Skip to content

Commit c0662db

Browse files
authored
Merge pull request #1114 from oracle/rmarano
removed welcome1, jenkins-ignore
2 parents 60c7611 + ccf994d commit c0662db

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

docs-source/content/quickstart/create-domain.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ weight: 6
1010

1111
```bash
1212
$ kubernetes/samples/scripts/create-weblogic-domain-credentials/create-weblogic-credentials.sh \
13-
-u weblogic -p welcome1 -n sample-domain1-ns -d sample-domain1
13+
-u <username> -p <password> -n sample-domain1-ns -d sample-domain1
1414
```
1515

1616
The sample will create a secret named `domainUID-weblogic-credentials` where the `domainUID` is replaced
@@ -35,7 +35,7 @@ If you set the `domainHomeImageBuildPath` property to `./docker-images/OracleWeb
3535

3636
```bash
3737
$ cd kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image
38-
$ ./create-domain.sh -i my-inputs.yaml -o /some/output/directory -u weblogic -p welcome1 -e
38+
$ ./create-domain.sh -i my-inputs.yaml -o /some/output/directory -u <username> -p <password> -e
3939
```
4040

4141
You need to provide the WebLogic administration user name and password in the `-u` and `-p` options

docs-source/content/samples/simple/credentials/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ that the domain will run in.
1717
To use the sample, run the command:
1818

1919
```
20-
$ ./create-weblogic-credentials.sh -u username -p password -d domainUID -n namespace -s secretName
20+
$ ./create-weblogic-credentials.sh -u <username> -p <password> -d domainUID -n namespace -s secretName
2121
```
2222

2323
The parameters are as follows:

docs-source/content/samples/simple/domains/domain-home-in-image/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ The following prerequisites must be handled prior to running the create domain s
2222
```
2323
$ cd ./kubernetes/samples/scripts/create-weblogic-domain-credentials
2424
$ create-weblogic-credentials.sh
25-
-u weblogic
26-
-p welcome1
25+
-u <username>
26+
-p <password>
2727
-d domain1
2828
-n default
2929
-s domain1-weblogic-credentials

docs-source/content/userguide/managing-domains/prepare.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ Perform these steps to prepare your Kubernetes cluster to run a WebLogic domain:
2424
```
2525
$ kubectl -n domain-namespace-1 \
2626
create secret generic domain1-weblogic-credentials \
27-
--from-literal=username=weblogic \
28-
--from-literal=password=welcome1
27+
--from-literal=username=username \
28+
--from-literal=password=password
2929
```
3030
3131
* Replace `domain-namespace-1` with the namespace that the domain will be in.
3232
* Replace `domain1-weblogic-credentials` with the name of the secret. The operator expects the secret name to be
3333
the `domainUID` followed by the literal string `-weblogic-credentials` and many of the samples assume this name.
34-
* Replace the string `weblogic` in the third line with the user name for the administrative user.
35-
* Replace the string `welcome1` in the fourth line with the password.
34+
* Replace the string `username` in the third line with the user name for the administrative user.
35+
* Replace the string `password` in the fourth line with the password.
3636
3737
1. Optionally, [create a PV & persistent volume claim (PVC)]({{< relref "/samples/simple/storage/_index.md" >}}) which can hold the domain home, logs, and application binaries.
3838
Even if you put your domain in a Docker image, you may want to put the logs on a persistent volume so that they are available after the pods terminate.

0 commit comments

Comments
 (0)