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 \
4545 $ kubectl create serviceaccount -n sample-weblogic-operator-ns sample-weblogic-operator-sa
4646 ```
4747
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 ...`
4956
5057 ```shell
51- $ helm install sample-weblogic-operator kubernetes/charts/weblogic-operator \
58+ $ helm install sample-weblogic-operator weblogic-operator/weblogic-operator \
59+ --version {{< latestVersion >}} \
5260 --namespace sample-weblogic-operator-ns \
53- --set image=ghcr.io/oracle/weblogic-kubernetes-operator:{{< latestVersion >}} \
54- --set serviceAccount=sample-weblogic-operator-sa \
5561 --set "enableClusterRoleBinding=true" \
5662 --set "domainNamespaceSelectionStrategy=LabelSelector" \
5763 --set "domainNamespaceLabelSelector=weblogic-operator\=enabled" \
You can’t perform that action at this time.
0 commit comments