Skip to content

Commit ef474e4

Browse files
additional edits
1 parent aad2a1c commit ef474e4

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

site/quickstart.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ Use this quick start guide to create a WebLogic deployment in a Kubernetes clust
44
These instructions assume that you are already familiar with Kubernetes. If you need more detailed instructions, please
55
refer to the [User guide](user-guide.md).
66

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":
7+
> If you have an older 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":
1313
the API version in the data (weblogic.oracle/v2) does not match the expected API version (weblogic.oracle/v1`
1414

1515
## Prerequisites
@@ -32,7 +32,7 @@ b. Log in to the Docker Store from your docker client:
3232
```
3333
$ docker login
3434
```
35-
c. Pull the operator image and tag it to the default image value of the operator:
35+
c. Pull the operator image and tag it with the default image value of the operator:
3636
```
3737
$ docker pull oracle/weblogic-kubernetes-operator:2.0-rc1
3838
$ docker tag oracle/weblogic-kubernetes-operator:2.0-rc1 weblogic-kubernetes-operator:2.0
@@ -170,9 +170,9 @@ $ cd kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image
170170
$ ./create-domain.sh -i my-inputs.yaml -o /some/output/directory -u username -p password -e
171171
```
172172

173-
You need to provide the WebLogic administration username and password in the `-u` and `-p` options
174-
respectively, as shown in the example. If you specify the `-e` option, the script will generate the
175-
Kubernetes YAML files *and* apply them to your cluster. If you omit the `-e` option, the
173+
You need to provide the WebLogic administration user name and password in the `-u` and `-p` options
174+
respectively, as shown in the example. If you specify the `-e` option, the script will generate the
175+
Kubernetes YAML files *and* apply them to your cluster. If you omit the `-e` option, the
176176
script will just generate the YAML files, but will not take any action on your cluster.
177177

178178
c. Confirm that the operator started the servers for the domain:
@@ -201,9 +201,9 @@ $ helm install kubernetes/samples/charts/ingress-per-domain \
201201
--set traefik.hostname=sample-domain1.org
202202
```
203203

204-
e. To confirm that the load balancer noticed the new Ingress and is successfully routing to the domain's server pods
205-
you can hit the URL for the "WebLogic Ready App" which will return a HTTP 200 status code as
206-
shown in the example below. If you used the host-based routing ingress sample you will need to
204+
e. To confirm that the load balancer noticed the new Ingress and is successfully routing to the domain's server pods,
205+
you can hit the URL for the "WebLogic Ready App" which will return a HTTP 200 status code, as
206+
shown in the example below. If you used the host-based routing Ingress sample, you will need to
207207
provide the hostname in the `-H` option:
208208
```
209209
$ curl -v -H 'host: sample-domain1.org' http://your.server.com:30305/weblogic/

@@ -234,7 +234,7 @@ b. Remove the domain resources by using the sample [`delete-weblogic-domain-reso
234234
```
235235
$ kubernetes/samples/scripts/delete-domain/delete-weblogic-domain-resources.sh -d sample-domain1
236236
```
237-
c. Use `kubectl` to confirm that the server pods and domain resource are gone.
237+
c. Use `kubectl` to confirm that the server pods and domain resource are gone:
238238
```
239239
$ kubectl get pods -n sample-domain1-ns
240240
$ kubectl get domains -n sample-domain1-ns
@@ -252,7 +252,7 @@ $ helm upgrade \
252252
stable/traefik
253253
```
254254

255-
b. Configure the operator to stop managing the domain.
255+
b. Configure the operator to stop managing the domain:
256256

257257
```
258258
$ helm upgrade \

0 commit comments

Comments
 (0)