Skip to content

Commit 946975d

Browse files
rosemarymaranomarkxnelson
authored andcommitted
minor edits (#669)
* minor edits * fix typo
1 parent d3c7050 commit 946975d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

site/quickstart.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Quick start guide
22

33
Use this quick start guide to create a WebLogic deployment in a Kubernetes cluster with the Oracle WebLogic Kubernetes Operator. Please note that this walk-through is for demonstration purposes only, not for use in production.
4-
These instructions assume you are already familiar with Kubernetes. If you need more detailed instructions, please
4+
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

77
## Prerequisites
88
For this exercise, you’ll need a Kubernetes cluster. If you need help setting one up, check out our [cheat sheet](k8s_setup.md).
99

1010
## 1. Get these images and put them into your local registry.
1111

12-
a. If you don't already have one, obtain a Docker Store account, log on to the Docker Store
12+
a. If you don't already have one, obtain a Docker Store account, log in to the Docker Store
1313
and accept the license agreement for the [WebLogic Server image](https://hub.docker.com/_/oracle-weblogic-server-12c).
1414

1515
b. Log in to the Docker Store from your docker client:
@@ -56,8 +56,8 @@ b. Create a service account for the operator in the operator's namespace:
5656
```
5757
$ kubectl create serviceaccount -n sample-weblogic-operator-ns sample-weblogic-operator-sa
5858
```
59-
c. Grant the helm service account the `cluster-admin` role:
60-
```
59+
c. Grant the Helm service account the `cluster-admin` role:
60+
```
6161
$ cat <<EOF | kubectl apply -f -
6262
apiVersion: rbac.authorization.k8s.io/v1
6363
kind: ClusterRoleBinding
@@ -77,15 +77,15 @@ d. Clone this repository:
7777
```
7878
$ git clone https://github.com/oracle/weblogic-kubernetes-operator
7979
```
80-
3. Use `helm` to install and start the operator, from the directory you just cloned:
80+
3. Use `helm` to install and start the operator from the directory you just cloned:
8181

8282
```
8383
$ helm install kubernetes/charts/weblogic-operator \
8484
--name sample-weblogic-operator \
8585
--namespace sample-weblogic-operator-ns \
8686
--set serviceAccount=sample-weblogic-operator-sa \
8787
--set "domainNamespaces={}" \
88-
--wait
88+
--wait
8989
```
9090
f. Verify that the operator is up and running by viewing the operator pod's log:
9191

@@ -133,15 +133,15 @@ $ cd kubernetes/samples/scripts/create-weblogic-domain-credentials
133133
$ ./create-weblogic-credentials.sh -u weblogic -p welcome1 -n sample-domain-ns1 -d sample-domain1
134134
```
135135

136-
The sample will create a secret named `domdinUID-weblogic-credentials` where the `domainUID` is replaced
136+
The sample will create a secret named `domainUID-weblogic-credentials` where the `domainUID` is replaced
137137
with the value you provided. For example, the command above would create a secret named
138138
`sample-domain1-weblogic-credentials`.
139139

140-
b. Create a new image with a domain home by running the [`create-domain`](../kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image/create-domain.sh) script.
141-
Follow the directions in the [README](../kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image/README.md) file,
140+
b. Create a new image with a domain home by running the [`create-domain`](../kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image/create-domain.sh) script.
141+
Follow the directions in the [README](../kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image/README.md) file,
142142
including:
143-
144-
* Copying the sample `create-domain-inputs.yaml` file and updating your copy with the `domainUID` (`sample-domain1`),
143+
144+
* Copying the sample `create-domain-inputs.yaml` file and updating your copy with the `domainUID` (`sample-domain1`),
145145
domain namespace (`sample-domains-ns1`) and the base image (`oracle/weblogic:12213-patch-wls-for-k8s`).
146146

147147
* Setting `weblogicCredentialsSecretName` to the name of the secret containing the WebLogic credentials.
@@ -181,7 +181,7 @@ e. Confirm that the load balancer noticed the new Ingress and is successfully ro
181181
```
182182
$ curl http://${HOSTNAME}:30305/sample-domain1/
183183
```
184-
Note: Depending on where your Kubernetes cluster is running, you may need to open firewall ports or
184+
**Note**: Depending on where your Kubernetes cluster is running, you may need to open firewall ports or
185185
update security lists to allow ingress to this port.
186186

187187
## 6. Remove the domain.

0 commit comments

Comments
 (0)