File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
documentation/3.4/content/quickstart Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -45,13 +45,19 @@ $ helm install traefik-operator traefik/traefik \
45
45
$ kubectl create serviceaccount -n sample-weblogic-operator-ns sample-weblogic-operator-sa
46
46
```
47
47
48
- 3. Use `helm` to install and start the operator from the directory you just cloned:
48
+ 3. Access the operator Helm chart using this format: `helm repo add <helm-chart-repo-name> <helm-chart-repo-url>`.
49
+ Each version of the Helm chart defaults to using an operator image from the matching version.
50
+
51
+ ```
52
+ $ helm repo add weblogic-operator https://oracle.github.io/weblogic-kubernetes-operator/charts --force-update
53
+ ```
54
+
55
+ Install the operator using this format: `helm install <helm-release-name> <helm-chart-repo-name>/weblogic-operator ...`
49
56
50
57
```shell
51
- $ helm install sample-weblogic-operator kubernetes/charts/weblogic-operator \
58
+ $ helm install sample-weblogic-operator weblogic-operator/weblogic-operator \
59
+ --version {{< latestVersion >}} \
52
60
--namespace sample-weblogic-operator-ns \
53
- --set image=ghcr.io/oracle/weblogic-kubernetes-operator:{{< latestVersion >}} \
54
- --set serviceAccount=sample-weblogic-operator-sa \
55
61
--set "enableClusterRoleBinding=true" \
56
62
--set "domainNamespaceSelectionStrategy=LabelSelector" \
57
63
--set "domainNamespaceLabelSelector=weblogic-operator\=enabled" \
You can’t perform that action at this time.
0 commit comments