Skip to content

Commit 9a79487

Browse files
committed
modify model in image sample.
1 parent 69f3cfb commit 9a79487

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
##### Download the WebLogic Kubernetes Operator sample.
22

3-
Download the WebLogic Kubernetes Operator sample ZIP file. We will use several scripts in this zip file to create a WebLogic domain. This sample was tested with v4.1.8, but should work with the latest release.
3+
Download the WebLogic Kubernetes Operator sample ZIP file. We will use several scripts in this zip file to create a WebLogic domain. This sample was tested with v4.2.5, but should work with the latest release.
44

55
```shell
66
$ cd $BASE_DIR
77
$ mkdir sample-scripts
8-
$ curl -m 120 -fL https://github.com/oracle/weblogic-kubernetes-operator/releases/download/v4.1.8/sample-scripts.zip \
8+
$ curl -m 120 -fL https://github.com/oracle/weblogic-kubernetes-operator/releases/download/v4.2.5/sample-scripts.zip \
99
-o ${BASE_DIR}/sample-scripts/sample-scripts.zip
1010
$ unzip ${BASE_DIR}/sample-scripts/sample-scripts.zip -d ${BASE_DIR}/sample-scripts
1111
```

documentation/site/content/samples/azure-kubernetes-service/model-in-image.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Update the repo to get the latest Helm charts. It is a best practice to do this
9999
$ helm repo update
100100
$ helm install weblogic-operator weblogic-operator/weblogic-operator \
101101
--namespace sample-weblogic-operator-ns \
102-
--version 4.1.8 \
102+
--version 4.2.5 \
103103
--set serviceAccount=sample-weblogic-operator-sa \
104104
--wait
105105
```
@@ -115,7 +115,7 @@ REVISION: 1
115115
TEST SUITE: None
116116
```
117117

118-
{{% notice tip %}} If you wish to use a more recent version of the operator, replace the `4.1.8` in the preceding command with the other version number. To see the list of versions, visit the [GitHub releases page](https://github.com/oracle/weblogic-kubernetes-operator/releases).
118+
{{% notice tip %}} If you wish to use a more recent version of the operator, replace the `4.2.5` in the preceding command with the other version number. To see the list of versions, visit the [GitHub releases page](https://github.com/oracle/weblogic-kubernetes-operator/releases).
119119
{{% /notice %}}
120120

121121

@@ -126,7 +126,7 @@ $ helm list -A
126126
```
127127
```
128128
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
129-
weblogic-operator sample-weblogic-operator-ns 1 2023-05-15 10:31:05.1890341 +0800 CST deployeweblogic-operator-4.1.8 4.1.8
129+
weblogic-operator sample-weblogic-operator-ns 1 2023-05-15 10:31:05.1890341 +0800 CST deployeweblogic-operator-4.2.5 4.2.5
130130
```
131131
```shell
132132
$ kubectl get pods -n sample-weblogic-operator-ns
@@ -696,15 +696,15 @@ Events: <none>
696696
Access the Administration Console using the admin load balancer IP address.
697697
698698
```shell
699-
$ ADMIN_SERVER_IP=$(kubectl -n sample-domain1-ns get svc sample-domain1-admin-server-external-lb -o=jsonpath='{.status.loadBalancer.ingress\[0\].ip}')
699+
$ ADMIN_SERVER_IP=$(kubectl -n sample-domain1-ns get svc sample-domain1-admin-server-external-lb -o=jsonpath='{.status.loadBalancer.ingress[0].ip}')
700700
$ echo "Administration Console Address: http://${ADMIN_SERVER_IP}:7001/console/"
701701
```
702702
703703
Access the sample application using the cluster load balancer IP address.
704704
705705
```shell
706706
## Access the sample application using the cluster load balancer IP.
707-
$ CLUSTER_IP=$(kubectl -n sample-domain1-ns get svc sample-domain1-cluster-1-lb -o=jsonpath='{.status.loadBalancer.ingress\[0\].ip}')
707+
$ CLUSTER_IP=$(kubectl -n sample-domain1-ns get svc sample-domain1-cluster-1-lb -o=jsonpath='{.status.loadBalancer.ingress[0].ip}')
708708
```
709709

710710
```shell

0 commit comments

Comments
 (0)