You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/helm-charts.md
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,15 @@
4
4
5
5
The WebLogic Kubernetes Operator uses Helm to create and deploy any necessary resources and then run the operator in a Kubernetes cluster. Helm helps you manage Kubernetes applications. Helm charts help you define and install applications into the Kubernetes cluster. The operator's Helm chart is located in the `kubernetes/charts/weblogic-operator` directory.
6
6
7
+
> If you have an old version of the operator installed on your cluster you must remove
8
+
it before installing this version. You should remove the deployment (for example `kubectl delete deploy weblogic-operator -n your-namespace`) and the custom
9
+
resource definition (for example `kubectl delete crd domain`). If you do not remove
10
+
the custom resource definition you may see errors like this:
11
+
12
+
`Error from server (BadRequest): error when creating "/scratch/output/uidomain/weblogic-domains/uidomain/domain.yaml":
13
+
the API version in the data (weblogic.oracle/v2) does not match the expected API version (weblogic.oracle/v1`
14
+
15
+
7
16
## Install Helm and Tiller
8
17
9
18
Helm has two parts: a client (helm) and a server (tiller). Tiller runs inside of your Kubernetes cluster, and manages releases (installations) of your charts. See https://github.com/kubernetes/helm/blob/master/docs/install.md for detailed instructions on installing helm and tiller.
Copy file name to clipboardExpand all lines: site/quickstart.md
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,14 @@ Use this quick start guide to create a WebLogic deployment in a Kubernetes clust
4
4
These instructions assume that you are already familiar with Kubernetes. If you need more detailed instructions, please
5
5
refer to the [User guide](user-guide.md).
6
6
7
+
> If you have an old version of the operator installed on your cluster you must remove
8
+
it before installing this version. You should remove the deployment (for example `kubectl delete deploy weblogic-operator -n your-namespace`) and the custom
9
+
resource definition (for example `kubectl delete crd domain`). If you do not remove
10
+
the custom resource definition you may see errors like this:
11
+
12
+
`Error from server (BadRequest): error when creating "/scratch/output/uidomain/weblogic-domains/uidomain/domain.yaml":
13
+
the API version in the data (weblogic.oracle/v2) does not match the expected API version (weblogic.oracle/v1`
14
+
7
15
## Prerequisites
8
16
For this exercise, you’ll need a Kubernetes cluster. If you need help setting one up, check out our [cheat sheet](k8s_setup.md).
9
17
@@ -164,9 +172,14 @@ domain namespace (`sample-domain1-ns`) and the `domainHomeImageBase` (`oracle/we
164
172
For example, assuming you named your copy `my-inputs.yaml`:
165
173
```
166
174
$ cd kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image
0 commit comments