Skip to content

Commit

Permalink
Merge pull request #1114 from oracle/rmarano
Browse files Browse the repository at this point in the history
removed welcome1, jenkins-ignore
  • Loading branch information
rjeberhard authored Jun 17, 2019
2 parents 60c7611 + ccf994d commit c0662db
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions docs-source/content/quickstart/create-domain.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ weight: 6

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

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

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

You need to provide the WebLogic administration user name and password in the `-u` and `-p` options
Expand Down
2 changes: 1 addition & 1 deletion docs-source/content/samples/simple/credentials/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ that the domain will run in.
To use the sample, run the command:

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

The parameters are as follows:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ The following prerequisites must be handled prior to running the create domain s
```
$ cd ./kubernetes/samples/scripts/create-weblogic-domain-credentials
$ create-weblogic-credentials.sh
-u weblogic
-p welcome1
-u <username>
-p <password>
-d domain1
-n default
-s domain1-weblogic-credentials
Expand Down
8 changes: 4 additions & 4 deletions docs-source/content/userguide/managing-domains/prepare.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ Perform these steps to prepare your Kubernetes cluster to run a WebLogic domain:
```
$ kubectl -n domain-namespace-1 \
create secret generic domain1-weblogic-credentials \
--from-literal=username=weblogic \
--from-literal=password=welcome1
--from-literal=username=username \
--from-literal=password=password
```
* Replace `domain-namespace-1` with the namespace that the domain will be in.
* Replace `domain1-weblogic-credentials` with the name of the secret. The operator expects the secret name to be
the `domainUID` followed by the literal string `-weblogic-credentials` and many of the samples assume this name.
* Replace the string `weblogic` in the third line with the user name for the administrative user.
* Replace the string `welcome1` in the fourth line with the password.
* Replace the string `username` in the third line with the user name for the administrative user.
* Replace the string `password` in the fourth line with the password.
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.
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.
Expand Down

0 comments on commit c0662db

Please sign in to comment.