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
**Note**: If you have not used the base image (`store/oracle/serverjre:8`) before, you will need to visit the [Docker Store web interface](https://store.docker.com/images/oracle-serverjre-8) and accept the license agreement before the Docker Store will give you permission to pull that image.
@@ -86,18 +86,13 @@ Next, upload your image to your Kubernetes server as follows:
86
86
87
87
```
88
88
# on your build machine:
89
-
docker save weblogic-kubernetes-operator:developer > operator.tar
89
+
docker save weblogic-kubernetes-operator:some-tag > operator.tar
Verify that you have the right image by running `docker images | grep webloogic-kubernetes-operator` on both machines and comparing the image IDs.
96
-
97
-
[comment]: #( Pull the operator image )
98
-
[comment]: #( You can let Kubernetes pull the Docker image for you the first time you try to create a pod that uses the image, but we have found that you can generally avoid various common issues like putting the secret in the wrong namespace or getting the credentials wrong by just manually pulling the image by running these commands *on the Kubernetes master*: )
Verify that you have the right image by running `docker images | grep weblogic-kubernetes-operator` on both machines and comparing the image IDs.
101
96
102
97
## Customizing the operator parameters file
103
98
@@ -120,7 +115,7 @@ The operator is deployed with the provided installation script (`create-weblogic
120
115
|`remoteDebugNodePortEnabled`| Controls whether or not the operator will start a Java remote debug server on the provided port and suspend execution until a remote debugger has attached. |`false`|
121
116
|`serviceAccount`| The name of the service account that the operator will use to make requests to the Kubernetes API server. |`weblogic-operator`|
122
117
|`targetNamespaces`| A list of the Kubernetes namespaces that may contain WebLogic domains that the operator will manage. The operator will not take any action against a domain that is in a namespace not listed here. |`default`|
123
-
|`weblogicOperatorImage`| The Docker image containing the operator code. |`container-registry.oracle.com/middleware/weblogic-kubernetes-operator:latest`|
118
+
|`weblogicOperatorImage`| The Docker image containing the operator code. |`weblogic-kubernetes-operator:1.0`|
124
119
|`weblogicOperatorImagePullPolicy`| The image pull policy for the operator Docker image. Allowed values are: `Always`, `Never` and `IfNotPresent`|`IfNotPresent`|
125
120
|`weblogicOperatorImagePullSecretName`| Name of the Kubernetes secret to access the Docker Store to pull the WebLogic Server Docker image. The presence of the secret will be validated when this parameter is enabled. ||
126
121
@@ -218,7 +213,7 @@ The spec section provides details for the container that the operator will execu
0 commit comments