Skip to content

Commit c7349d9

Browse files
committed
improve scripts
1 parent 1678873 commit c7349d9

File tree

2 files changed

+326
-260
lines changed

2 files changed

+326
-260
lines changed

kubernetes/samples/scripts/create-weblogic-domain-on-azure-kubernetes-service/create-domain-on-aks-inputs.sh

Lines changed: 0 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,10 @@
44
# The version of this inputs file. Do not modify.
55
export version=create-domain-on-aks-inputs-v1
66

7-
#
8-
# Parameters that must be changed from these values!
9-
#
10-
11-
# Oracle Single Sign-On (SSO) account email, used to pull the WebLogic Server image.
12-
export dockerEmail=docker-email
13-
14-
# Oracle SSO account password, used to pull the WebLogic Server image.
15-
export dockerPassword=docker-password
16-
17-
# Name of weblogic user account.
18-
export weblogicUserName=weblogic
19-
20-
# Password for WebLogic user account.
21-
export weblogicAccountPassword=Secret123456
22-
23-
# Specify where to create azure resource.
24-
export azureLocation=eastus
25-
26-
# Specify a prefix to name resources, only allow lowercase letters and numbers, between 1 and 7 characters.
27-
# Resource group is named with ${namePrefix}resourcegroup<timestamp>, e.g. wlsresourcegroup1592469388
28-
# Kubernetes cluster is named with ${namePrefix}akscluster<timestamp>, e.g. wlsakscluster1592469388
29-
# Storage account is named with ${namePrefix}storage<timestamp>, e.g. wlsstorage1592469388
30-
export namePrefix=wls
31-
327
#
338
# Parameters that may optionally be changed.
349
#
3510

36-
# The suffix of file share secret name, the complete value is ${namePrefix}${azureFileShareSecretNameSuffix}.
37-
export azureFileShareSecretNameSuffix=azure-secret
38-
3911
# Number of azure kubernetes nodes, used to create azure kubernetes cluster.
4012
export azureKubernetesNodeCount=2
4113

@@ -48,17 +20,6 @@ export azureKubernetesNodepoolNamePrefix=pool1
4820
#Java Option for WebLogic Server
4921
export javaOptions="-Dweblogic.StdoutDebugEnabled=false -XX:InitialRAMPercentage=25.0 -XX:MaxRAMPercentage=50.0"
5022

51-
# The suffix of the Kubernetes secret name, the complete value is ${namePrefix}${imagePullSecretNameSuffix}. The secret name is used to access the container registry to pull the WebLogic Server image
52-
# Used to create Kubernetes secret for container registry account.
53-
# Parameter "imagePullSecretName" will be overwritten with this field in kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/create-domain-inputs.yaml
54-
export imagePullSecretNameSuffix=regcred
55-
56-
# Storage class name for Azure Files using Container Storage Interface driver, see https://docs.microsoft.com/en-us/azure/aks/azure-files-csi#nfs-file-shares
57-
export azureFileCsiNfsClassName=azurefile-csi-nfs
58-
59-
# The suffix of azure storage file share name, the complete value is ${namePrefix}-${azureStorageShareNameSuffix}-<timestamp>, used to create file share, and mount file share.
60-
export azureStorageShareNameSuffix=weblogic
61-
6223
# Resource request for each server pod (Memory and CPU). This is minimum amount of compute
6324
# resources required for each server pod. Edit value(s) below as per pod sizing requirements.
6425
# These are optional
@@ -77,10 +38,6 @@ export serverPodCpuRequest="250m"
7738
export serverPodMemoryLimit="1.5Gi"
7839
export serverPodCpuLimit="250m"
7940

80-
# The suffix of the persistent volume claim name, the complete value is ${namePrefix}-${persistentVolumeClaimNameSuffix}-<timestamp>.
81-
# Parameter "persistentVolumeClaimName" will be overwritten with this field in kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/create-domain-inputs.yaml
82-
export persistentVolumeClaimNameSuffix=azurefile
83-
8441
# WebLogic Server image.
8542
# Parameter "image" will be overwritten with this field in kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/create-domain-inputs.yaml
8643
# **NOTE**:

0 commit comments

Comments
 (0)