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: samples/kubernetes/end2end/docs/03-wls-operator.md
+17-11Lines changed: 17 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
## Installing the WebLogic Kubernetes Operator
2
2
We depend on the [WebLogic Kubernetes Operator](https://github.com/oracle/weblogic-kubernetes-operator) to create and manage WebLogic domains. For detailed installation information, see [Install the Operator](https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-operators/installation/).
3
3
4
-
In this example, we provide the steps to install the 2.1 release of the WebLogic Kubernetes Operator.
4
+
In this example, we provide the steps to install the 2.3.0 release of the WebLogic Kubernetes Operator.
5
5
6
6
### Pulling the Images
7
7
We need two images, the WebLogic Kubernetes Operator image from [Docker Hub](https://hub.docker.com) and the WebLogic Server image from the [Oracle Container Registry](https://container-registry.oracle.com).
@@ -10,10 +10,10 @@ Before pulling the image, you must:
10
10
If you do not already have Oracle Single Sign-On credentials, go to https://container-registry.oracle.com and create them by clicking the Sign In link at the top of the page.
11
11
- Log in to the site in your browser, find the image, and accept the license.
12
12
13
-
Pull the WebLogic Kubernetes Operator 2.1 image.
13
+
Pull the WebLogic Kubernetes Operator 2.3.0 image.
@@ -82,6 +83,11 @@ kubectl get crd domains.weblogic.oracle
82
83
NAME CREATED AT
83
84
domains.weblogic.oracle 2019-05-28T07:17:26Z
84
85
```
86
+
Verify that the domain CRD version is correct.
87
+
```
88
+
kubectl get crd domains.weblogic.oracle -o jsonpath="{.spec.version}"
89
+
```
90
+
The expected version should be `v5`. Because the WebLogic operator is backward compatible, a domain resource with any version older than `v5` should be supported.
85
91
86
92
Now the WebLogic Kubernetes Operator is running and it's monitoring the default namespace. Later we'll deploy a domain resource to the default namespace and the operator will be responsible for creating, running, and managing the WebLogic domain.
0 commit comments