Skip to content

Add sample running Oracle WLS Kubernetes Operator on Azure Kubernetes Service #1873

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Aug 20, 2020
Prev Previous commit
Next Next commit
Update _index.md
  • Loading branch information
edburns committed Aug 20, 2020
commit fd865c719218c5190c020a683f2aeccba3dceb9c
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ For example, given the service principal created above, the following values mus
| `dockerEmail` | `yourDockerEmail` | The email address corresponding to the Docker user name |
| `dockerPassword` | `yourDockerPassword`| Your Docker password in clear text |
| `dockerUserName` | `yourDockerId` | Your Docker id|
| `namePrefix` | `0730` | Alphanumeric value used as a disambiguation prefix for several Kubernetes resources. Make sure the value matches value of `${NAME_PREFIX}` to keep names in step-by-step commands the same with those in configuration files. |
| `namePrefix` | `0730` | Alphanumeric value used as a disambiguation prefix for several Kubernetes resources. Make sure the value matches the value of `${NAME_PREFIX}` to keep names in step-by-step commands the same with those in configuration files. |

Use the following command to generate configuration files, assuming the output directory is `~/azure`. The script will overwrite any files generated by a previous invocation.

Expand Down Expand Up @@ -525,7 +525,7 @@ Now that we have created the AKS cluster, installed the operator, and verified t

> **Note**: If the `NAME` column in your output is missing any of the values shown above, please reexamine your execution of the preceding steps in this sample to ensure that you correctly followed all of them. The `default-token-mwdj8` shown above will have a different ending in your output.

3. We will use `kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/create-domain.sh` script to create the WLS domain in the persistent volume we created previously.
3. We will use the `kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/create-domain.sh` script to create the WLS domain in the persistent volume we created previously.

First, we need to set up the domain configuration for the WebLogic domain. This step uses the configuration generated previously.

Expand Down Expand Up @@ -747,7 +747,7 @@ Now that we have created the AKS cluster, installed the operator, and verified t

It may take you up to 20 minutes to deploy all pods, please wait and make sure everything is ready.

You can tail the logs of the admin server with this command:
You can tail the logs of the Administration Server with this command:

```bash
kubectl logs -f domain1-admin-server
Expand Down Expand Up @@ -845,7 +845,7 @@ Now that we have created the AKS cluster, installed the operator, and verified t

If you want to automate the above steps from [Create the AKS cluster](#create-the-aks-cluster) onward, you can use the `kubernetes/samples/scripts/create-weblogic-domain-on-azure-kubernetes-service/create-domain-on-aks.sh` script with the `-e` option. This option applies the YAML files generated by the script.

For input values, you can edit `kubernetes/samples/scripts/create-weblogic-domain-on-azure-kubernetes-service/create-domain-on-aks-inputs.yaml` directly, or copy the file and edit in your copy. The following values must be specified:
For input values, you can edit `kubernetes/samples/scripts/create-weblogic-domain-on-azure-kubernetes-service/create-domain-on-aks-inputs.yaml` directly, or copy the file and edit your copy. The following values must be specified:

| Name in YAML file | Example value | Notes |
|-------------------|---------------|-------|
Expand Down