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
Change directory to the cloned git weblogic-operator repo:
42
+
Change directory to the cloned git weblogic-kubernetes-operator repo:
48
43
49
44
```bash
50
-
cdweblogic-operator/kubernetes/helm-charts
45
+
cd kubernetes/charts
51
46
```
52
47
53
48
To install the chart with the release `my-release`, namespace `my-namespace` and secret `my-secret' without creating a weblogic domain (such as when a WebLogic domain already exists):
| loadBalancerAdminPort | Load balancer admin port | 30315 |
90
-
| loadBalancerWebPort| Load balancer web port | 30305 |
91
-
| managedServerCount | Number of managed servers to generate for the domain | 2 |
92
-
| managedServerStartCount | Number of managed severs to initially start for a domain | 2 |
76
+
| domainUID | Unique id identifying a domain. The id must be unique across all domains in a Kubernetes cluster | domain1 (needs to uncomment) |
77
+
| clusterType | Type of WebLogic Cluster. Legal values are "CONFIGURED" or "DYNAMIC" | DYNAMIC |
78
+
| startupControl | Determines which WebLogic Servers the Operator will start up. Legal values are "NONE", "ALL", "ADMIN", "SPECIFIED", or "AUTO" | "AUTO" |
79
+
| clusterName | Cluster name | cluster-1 |
80
+
| configuredManagedServerCount | Number of managed servers to generate for the domain | 2 |
81
+
| initialManagedServerReplicas | Number of managed severs to initially start for a domain | 2 |
93
82
| managedServerNameBase | Base string used to generate managed server names | managed-server |
94
83
| managedServerPort | Port number for each managed server | 8001 |
95
-
| persistencePath | Physical path of the persistent volume storage | /scratch/k8s_dir/persistentVolume001 |
96
-
| persistenceSize | Total storage allocated by the persistent volume | 10Gi |
| weblogicDomainStorageType | Persistent volume type for the domain's storage. The value must be 'HOST_PATH' or 'NFS' | HOST_PAT |
86
+
| weblogicDomainStorageNFSServer | The server name or ip address of the NFS server to use for the domain's storage | nfsServer (need to uncomment as necessary) |
87
+
| weblogicDomainStoragePath | Physical path of the persistent volume storage | /scratch/k8s_dir/domain1 (need to uncomment) |
88
+
| weblogicDomainStorageReclaimPolicy | Reclaim policy of the domain's persistent storage. The valid values are: 'Retain', 'Delete', and 'Recycle' | Retain |
89
+
| weblogicDomainStorageSize | Total storage allocated to the domain's persistent volume | 10Gi |
97
90
| productionModeEnabled | Boolean indicating if production mode is enabled for the domain | true |
98
-
| secretName | Name of the Kubernetes secret for the Admin Server's username and password | domain1-weblogic-credentials |
91
+
| weblogicCredentialsSecretName | Name of the Kubernetes secret for the Admin Server's username and password | domain1-weblogic-credentials |
92
+
| weblogicImagePullSecretName | Name of the Kubernetes secret to access the Docker Store to pull the Weblogic Docker image ||
99
93
| t3ChannelPort | Port for the T3Channel of the NetworkAccessPoint | 30012 |
100
94
| t3PublicAddress | Public address for T3Channel of the NetworkAccessPoint. This value should be set to the Kubernetes server address, which you can get by running "kubectl cluster-info". If this value is not set to that address, WLST will not be able to connect from outside the Kubernetes cluster | kubernetes |
95
+
| exposeAdminT3Channel | Boolean to indicate if the channel should be exposed as a service | false |
96
+
| adminNodePort | NodePort to expose for the admin server | 30701 |
97
+
| exposeAdminNodePort | Boolean to indicate if the adminNodePort will be exposed | false |
Copy file name to clipboardExpand all lines: kubernetes/src/test/java/oracle/kubernetes/operator/helm/CreateDomainGeneratedFilesOptionalFeaturesDisabledIT.java
0 commit comments