File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -63,13 +63,10 @@ If you deploy rucio in a kubernetes cluster using the official rucio
63
63
[ helm charts] ( https://github.com/rucio/helm-charts/ ) and want to hotfix
64
64
rucio using a patch file created in the previous section, follow these steps:
65
65
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:
69
67
70
68
``` 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
73
70
```
74
71
75
72
* 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
79
76
add the following
80
77
81
78
``` 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
86
81
mountPath : /patch/hotfix_conveyor_poller.patch
87
82
subPath : hotfix_conveyor_poller.patch
88
83
` ` `
You can’t perform that action at this time.
0 commit comments