Skip to content

Commit 96485a6

Browse files
authored
Quick start update to use the published helm chart instead of using the chart from github repo (#3142)
* Update to use the published helm chart instead of using the chart from cloned github repo when installing the operator.
1 parent 0cb3b46 commit 96485a6

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

documentation/3.4/content/quickstart/install.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff 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" \

0 commit comments

Comments
 (0)