Skip to content

Commit 18c7651

Browse files
doc operator upgrade (#1722)
* doc operator upgrade * fix indentation * update text and example * added release number
1 parent fbc4f69 commit 18c7651

File tree

1 file changed

+26
-2
lines changed
  • docs-source/content/userguide/managing-operators/installation

1 file changed

+26
-2
lines changed

docs-source/content/userguide/managing-operators/installation/_index.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,15 @@ weight: 1
66
---
77

88
The operator uses Helm to create and deploy the necessary resources and
9-
then run the operator in a Kubernetes cluster.
9+
then run the operator in a Kubernetes cluster. This document describes how to install, upgrade,
10+
and remove the operator.
11+
12+
#### Content
13+
14+
- [Install the operator Helm chart](#install-the-operator-helm-chart)
15+
- [Alternatively, install the operator Helm chart from the GitHub chart repository](#alternatively-install-the-operator-helm-chart-from-the-github-chart-repository)
16+
- [Upgrade the operator](#upgrade-the-operator)
17+
- [Remove the operator](#remove-the-operator)
1018

1119
#### Install the operator Helm chart
1220

@@ -76,7 +84,23 @@ Install the operator from the repository:
7684
$ helm install weblogic-operator weblogic-operator/weblogic-operator
7785
```
7886

79-
#### Removing the operator
87+
#### Upgrade the operator
88+
89+
To upgrade the operator, use the `helm upgrade` command. When upgrading the operator,
90+
the `helm upgrade` command requires that you supply a new Helm chart and image. For example:
91+
92+
```
93+
$ helm upgrade \
94+
--reuse-values \
95+
--set image=oracle/weblogic-kubernetes-operator:2.5.0 \
96+
--namespace weblogic-operator-namespace \
97+
--wait \
98+
weblogic-operator \
99+
kubernetes/charts/weblogic-operator
100+
```
101+
102+
103+
#### Remove the operator
80104

81105
The `helm delete` command is used to remove an operator release and its associated resources from the Kubernetes cluster. The release name used with the `helm delete` command is the same release name used with the `helm install` command (see [Install the Helm chart](#install-the-operator-helm-chart)). For example:
82106

0 commit comments

Comments
 (0)