Skip to content

Commit dfecf29

Browse files
Radu Carpabari12
authored andcommitted
update hotfix documentation for 1.31
additionalSecrets was deprecated. This also works on 1.30, as the new functionality is available already.
1 parent 2b0fe52 commit dfecf29

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

docs/administration.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,10 @@ If you deploy rucio in a kubernetes cluster using the official rucio
6363
[helm charts](https://github.com/rucio/helm-charts/) and want to hotfix
6464
rucio using a patch file created in the previous section, follow these steps:
6565

66-
Lets assume you have two helm releases: `daemons` and `servers` in the
67-
kubernetes namespace `rucio`. Create a kubernetes secret for each of your
68-
helm releases:
66+
Create a kubernetes secret from the hotfix patch:
6967

7068
```bash
71-
kubectl -n rucio create secret generic daemons-hotfix-conveyor-poller-patch --from-file=hotfix_conveyor_poller.patch
72-
kubectl -n rucio create secret generic servers-hotfix-conveyor-poller-patch --from-file=hotfix_conveyor_poller.patch
69+
kubectl -n rucio create secret generic hotfix-conveyor-poller-patch --from-file=hotfix_conveyor_poller.patch
7370
```
7471

7572
*Note:* if you have more than one cluster, don't forget to create the
@@ -79,10 +76,8 @@ Now you'll have to update the helm `values` file for each helm release and
7976
add the following
8077

8178
```yaml
82-
additionalSecrets:
83-
hotfix-conveyor-poller-patch:
84-
# the helm release (daemons-/servers-) must NOT prefix the name
85-
secretName: hotfix-conveyor-poller-patch
79+
secretMounts:
80+
- secretFullName: hotfix-conveyor-poller-patch
8681
mountPath: /patch/hotfix_conveyor_poller.patch
8782
subPath: hotfix_conveyor_poller.patch
8883
```

0 commit comments

Comments
 (0)