Skip to content

Commit ef61818

Browse files
committed
update the image name used in the create weblogic domain samples
1 parent 446b3ad commit ef61818

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Before you begin, read this guide, [Domain Resource](../../../../../site/domain-
88

99
The following prerequisites must be handled prior to running the create domain script:
1010
* The WDT sample requires that `JAVA_HOME` is set to a Java JDK version 1.8 or later.
11-
* The operator requires WebLogic Server 12.2.1.3.0 with patch 29135930 applied. The existing WebLogic Docker image, `store/oracle/weblogic:12.2.1.3`, was updated on January 17, 2019, and has all the necessary patches applied; a `docker pull` is required if you pulled the image prior to that date. Refer to [WebLogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how to obtain or create the image.
11+
* The operator requires WebLogic Server 12.2.1.3.0 with patch 29135930 applied. The WebLogic Docker image, `weblogic:12.2.1.3`, has all the necessary patches applied. Refer to [WebLogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how to obtain or create the image.
1212
* Create a Kubernetes namespace for the domain unless the intention is to use the default namespace.
1313
* If `logHomeOnPV` is enabled, create the Kubernetes persistent volume where the log home will be hosted, and the Kubernetes persistent volume claim for the domain in the same Kubernates namespace. For samples to create a PV and PVC, see [Create sample PV and PVC](../../create-weblogic-domain-pv-pvc/README.md).
1414
* Create a Kubernetes secret for the WebLogic administrator credentials that contains the fields `username` and `password`, and make sure that the secret name matches the value specified for `weblogicCredentialsSecretName` (see Configuration table below). For example:
@@ -108,7 +108,7 @@ The following parameters can be provided in the inputs file.
108108
| `adminServerName` | Name of the Administration Server. | `admin-server` |
109109
| `clusterName` | Name of the WebLogic cluster instance to generate for the domain. | `cluster-1` |
110110
| `configuredManagedServerCount` | Number of Managed Server instances to generate for the domain. | `5` |
111-
| `domainHomeImageBase` | Base WebLogic binary image used to build the WebLogic domain image. The operator requires WebLogic Server 12.2.1.3.0 with patch 29135930 applied. The existing WebLogic Docker image, `store/oracle/weblogic:12.2.1.3`, was updated on January 17, 2019, and has all the necessary patches applied; a `docker pull` is required if you pulled the image prior to that date. Refer to [WebLogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how to obtain or create the image. | `store/oracle/weblogic:12.2.1.3` |
111+
| `domainHomeImageBase` | Base WebLogic binary image used to build the WebLogic domain image. The operator requires WebLogic Server 12.2.1.3.0 with patch 29135930 applied. The WebLogic Docker image, `weblogic:12.2.1.3`, has all the necessary patches applied. Refer to [WebLogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how to obtain or create the image. | `container-registry.oracle.com/middleware/weblogic:12.2.1.3` |
112112
| `domainHomeImageBuildPath` | Location of the WebLogic "domain home in image" Docker image in `https://github.com/oracle/docker-images.git` project. If not specified, use "./docker-images/OracleWebLogic/samples/12213-domain-home-in-image". Another possible value is "./docker-images/OracleWebLogic/samples/12213-domain-home-in-image-wdt" which uses WDT, instead of WLST, to generate the domain configuration. | `./docker-images/OracleWebLogic/samples/12213-domain-home-in-image` |
113113
| `domainPVMountPath` | Mount path of the domain persistent volume. This parameter is required if `logHomeOnPV` is true. Otherwise, it is ignored. | `/shared` |
114114
| `domainUID` | Unique ID that will be used to identify this particular domain. Used as the name of the generated WebLogic domain as well as the name of the Kubernetes domain resource. This ID must be unique across all domains in a Kubernetes cluster. This ID cannot contain any character that is not valid in a Kubernetes service name. | `domain1` |

kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image/create-domain-inputs.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,11 @@ domainPVMountPath: /shared
122122

123123
# Base WebLogic binary image used to build the WebLogic domain image
124124
# The operator requires WebLogic Server 12.2.1.3.0 with patch 29135930 applied.
125-
# The existing WebLogic Docker image, `store/oracle/weblogic:12.2.1.3`, was updated on January 17, 2019,
126-
# and has all the necessary patches applied; a `docker pull` is required if you already have this image.
125+
# The WebLogic Docker image, `weblogic:12.2.1.3`, has all the necessary patches applied.
127126
# Refer to [WebLogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how
128127
# to obtain or create the image.
129128
# See README.md for more help.
130-
domainHomeImageBase: store/oracle/weblogic:12.2.1.3
129+
domainHomeImageBase: container-registry.oracle.com/middleware/weblogic:12.2.1.3
131130

132131
# Location of the WebLogic "domain home in image" Docker image sample in the
133132
# `https://github.com/oracle/docker-images.git` project.

kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Before you begin, read this guide, [Domain Resource](../../../../../site/domain-
88

99
The following prerequisites must be handled prior to running the create domain script:
1010
* Make sure the WebLogic operator is running.
11-
* The operator requires WebLogic Server 12.2.1.3.0 with patch 29135930 applied. The existing WebLogic Docker image, `store/oracle/weblogic:12.2.1.3`, was updated on January 17, 2019, and has all the necessary patches applied; a `docker pull` is required if you pulled the image prior to that date. Refer to [WebLogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how to obtain or create the image.
11+
* The operator requires WebLogic Server 12.2.1.3.0 with patch 29135930 applied. The WebLogic Docker image, `weblogic:12.2.1.3`, has all the necessary patches applied. Refer to [WebLogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how to obtain or create the image.
1212
* Create a Kubernetes namespace for the domain unless the intention is to use the default namespace.
1313
* In the same Kubernetes namespace, create the Kubernetes persistent volume (PV) where the domain home will be hosted, and the Kubernetes persistent volume claim (PVC) for the domain. For samples to create a PV and PVC, see [Create sample PV and PVC](../../create-weblogic-domain-pv-pvc/README.md). By default, the `create-domain.sh` script creates a domain with the `domainUID` set to `domain1` and expects the PVC `domain1-weblogic-sample-pvc` to be present. You can create `domain1-weblogic-sample-pvc` using [create-pv-pvc.sh](../../create-weblogic-domain-pv-pvc/create-pv-pvc.sh) with an inputs file that has the `domainUID` set to `domain1`.
1414
* Create the Kubernetes secrets `username` and `password` of the admin account in the same Kubernetes namespace as the domain.
@@ -82,7 +82,7 @@ The following parameters can be provided in the inputs file.
8282
| `domainUID` | Unique ID that will be used to identify this particular domain. Used as the name of the generated WebLogic domain as well as the name of the Kubernetes domain resource. This ID must be unique across all domains in a Kubernetes cluster. This ID cannot contain any character that is not valid in a Kubernetes service name. | `domain1` |
8383
| `exposeAdminNodePort` | Boolean indicating if the Administration Server is exposed outside of the Kubernetes cluster. | `false` |
8484
| `exposeAdminT3Channel` | Boolean indicating if the T3 administrative channel is exposed outside the Kubernetes cluster. | `false` |
85-
| `image` | WebLogic Docker image. The operator requires WebLogic Server 12.2.1.3.0 with patch 29135930 applied. The existing WebLogic Docker image, `store/oracle/weblogic:12.2.1.3`, was updated on January 17, 2019, and has all the necessary patches applied; a `docker pull` is required if you pulled the image prior to that date. Refer to [WebLogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how to obtain or create the image. | `store/oracle/weblogic:12.2.1.3` |
85+
| `image` | WebLogic Docker image. The operator requires WebLogic Server 12.2.1.3.0 with patch 29135930 applied. The WebLogic Docker image, `weblogic:12.2.1.3`, has all the necessary patches applied. Refer to [WebLogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how to obtain or create the image. | `container-registry.oracle.com/middleware/weblogic:12.2.1.3` |
8686
| `imagePullPolicy` | WebLogic Docker image pull policy. Legal values are `IfNotPresent`, `Always`, or `Never` | `IfNotPresent` |
8787
| `imagePullSecretName` | 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 specified | |
8888
| `includeServerOutInPodLog` | Boolean indicating whether to include the server .out to the pod's stdout. | `true` |
@@ -135,7 +135,7 @@ spec:
135135
# If the domain home is in the image
136136
domainHomeInImage: false
137137
# The WebLogic Server Docker image that the operator uses to start the domain
138-
image: "store/oracle/weblogic:12.2.1.3"
138+
image: "container-registry.oracle.com/middleware/weblogic:12.2.1.3"
139139
# imagePullPolicy defaults to "Always" if image version is :latest
140140
imagePullPolicy: "IfNotPresent"
141141
# Identify which Secret contains the credentials for pulling an image
@@ -268,7 +268,7 @@ Spec:
268268
Server Start State: RUNNING
269269
Domain Home: /shared/domains/domain1
270270
Domain Home In Image: false
271-
Image: store/oracle/weblogic:12.2.1.3
271+
Image: container-registry.oracle.com/middleware/weblogic:12.2.1.3
272272
Image Pull Policy: IfNotPresent
273273
Include Server Out In Pod Log: true
274274
Log Home: /shared/logs/domain1

kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/create-domain-inputs.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,10 @@ managedServerPort: 8001
3939

4040
# WebLogic Server Docker image.
4141
# The operator requires WebLogic Server 12.2.1.3.0 with patch 29135930 applied.
42-
# The existing WebLogic Docker image, `store/oracle/weblogic:12.2.1.3`, was updated on January 17, 2019,
43-
# and has all the necessary patches applied; a `docker pull` is required if you already have this image.
42+
# The WebLogic Docker image, `weblogic:12.2.1.3`, has all the necessary patches applied.
4443
# Refer to [WebLogic Docker images](../../../../../site/weblogic-docker-images.md) for details on how
4544
# to obtain or create the image.
46-
image: store/oracle/weblogic:12.2.1.3
45+
image: container-registry.oracle.com/middleware/weblogic:12.2.1.3
4746

4847
# Image pull policy
4948
# Legal values are "IfNotPresent", "Always", or "Never"

0 commit comments

Comments
 (0)