You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs-source/content/samples/simple/azure-kubernetes-service/_index.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -951,6 +951,10 @@ The logs are stored in the Azure file share. Follow these steps to access the lo
951
951
kubernetes ClusterIP 10.0.0.1 <none> 443/TCP 16m
952
952
```
953
953
954
+
3. **Domain debugging**
955
+
956
+
Some suggestions for debugging problems with Model in Image after your Domain YAML file is deployed are found in the section on [debugging](/weblogic-kubernetes-operator/userguide/managing-domains/model-in-image/debugging/).
957
+
954
958
#### Clean Up Resources
955
959
956
960
The output from the `create-domain-on-aks.sh` script includes a statement about the Azure resources created by the script. To delete the cluster and free all related resources, simply delete the resource groups. The output will list the resource groups, such as.
Copy file name to clipboardExpand all lines: kubernetes/samples/scripts/create-weblogic-domain-on-azure-kubernetes-service/create-domain-on-aks.sh
+23-19Lines changed: 23 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -3,20 +3,24 @@
3
3
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
4
4
#
5
5
# Description
6
-
# This sample script creates a WebLogic domain home on the Azure Kubernetes Service (AKS).
6
+
# This sample script creates a WebLogic Server domain home on the Azure Kubernetes Service (AKS).
7
7
# It creates a new Azure resource group, with a new Azure Storage Account and Azure File Share to allow WebLogic
8
8
# to persist its configuration and data separately from the Kubernetes pods that run WebLogic workloads.
9
9
# Besides, it also generates the domain resource yaml files, which can be used to restart the Kubernetes
10
10
# artifacts of the corresponding domain.
11
11
#
12
-
# The Azure resource customized by editing create-domain-on-aks-inputs.yaml
13
-
# If you also want to customized WebLogic domain configuration, please edit kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/create-domain-inputs.yaml.
14
-
# or create a new copy and edit it, specify the file using "-d <your-domain-inputs.yaml>".
12
+
# The Azure resource deployment is customized by editing
13
+
# create-domain-on-aks-inputs.yaml. If you also want to customize
14
+
# WebLogic Server domain configuration, please edit
15
+
# kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/create-domain-inputs.yaml. Or you can create a copy of this file and edit it and refer to the copy using "-d <your-domain-inputs.yaml>".
15
16
#
16
17
# The following pre-requisites must be handled prior to running this script:
17
18
# * Environment has set up, with git, azure cli, kubectl and helm installed.
18
-
# * The doker hub account must have created, and checkouted Oracle WebLogic Server, we use 12.2.1.3 by default.
19
-
# * The Azure Service Principal must have created, with permission to create AKS.
19
+
# * The user must have accepted the license terms for the WebLogic Server docker
20
+
# images in Oracle Container Registry.
21
+
# See https://oracle.github.io/weblogic-kubernetes-operator/quickstart/get-images/
22
+
# * The Azure Service Principal must have been created, with permission to
23
+
# create AKS.
20
24
21
25
# Initialize
22
26
script="${BASH_SOURCE[0]}"
@@ -30,7 +34,7 @@ function usage {
30
34
echo" -i Parameter inputs file, must be specified."
31
35
echo" -o Output directory for the generated yaml files, must be specified."
32
36
echo" -u UID of resource, used to name file share, persistent valume, and persistent valume claim. "
33
-
echo" -e Also create the Azure Kubernetes Service and create WebLogic domain on it using the generated yaml files"
37
+
echo" -e Also create the Azure Kubernetes Service and create WebLogic Server domain on it using the generated yaml files"
34
38
echo" -d Paramters inputs file for creating domain, you can use specifed configuration by changing values of kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/create-domain-inputs.yaml, otherwise, we will use that file by default."
clusterLbIP=`kubectl get svc ${domainUID}-${clusterName}-external-lb --output jsonpath='{.status.loadBalancer.ingress[0].ip}'`
478
-
echo"Cluster external ip is ${clusterLbIP}, after you deploy application to WebLogic cluster, you can access it at http://${clusterLbIP}:${managedServerPort}/<your-app-path>"
482
+
echo"Cluster external ip is ${clusterLbIP}, after you deploy application to WebLogic Server cluster, you can access it at http://${clusterLbIP}:${managedServerPort}/<your-app-path>"
0 commit comments