Skip to content

Commit e904c32

Browse files
committed
update weblogic-domain helm charts readme to reflect current values
1 parent a4ebef0 commit e904c32

File tree

1 file changed

+27
-24
lines changed

1 file changed

+27
-24
lines changed

kubernetes/charts/weblogic-domain/README.md

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,17 @@ In this command, you must replace the uppercase items with your
3838
own values. The secret name will be needed when installing the helm chart.
3939

4040
## Installing the Chart
41-
Clone the git weblogic-operator repo:
4241

43-
```bash
44-
git clone https://github.com/oracle/weblogic-kubernetes-operator.git
45-
```
46-
47-
Change directory to the cloned git weblogic-operator repo:
42+
Change directory to the cloned git weblogic-kubernetes-operator repo:
4843

4944
```bash
50-
cd weblogic-operator/kubernetes/helm-charts
45+
cd kubernetes/charts
5146
```
5247

5348
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):
5449

5550
```bash
56-
helm install weblogic-domain --name my-release --namespace my-namespace --set secretName=my-secret --set createWeblogicDomain=false
51+
helm install weblogic-domain --name my-release --namespace my-namespace --set weblogicCredentialsSecretName=my-secret --set createWeblogicDomain=false
5752
```
5853

5954
The command deploys weblogic-domain on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists
@@ -75,34 +70,42 @@ The command removes all the Kubernetes components associated with the chart and
7570
| Key | Description | Default |
7671
| -------------------------------|-----------------------------------|-----------------------|
7772
| createWeblogicDomain | Boolean indicating if a weblogic domain should be created | true |
78-
| adminNodePort | NodePort to expose for the admin server | 30701 |
7973
| adminPort | Port number for Admin Server | 7001 |
8074
| adminServerName | Name of the Admin Server | admin-server |
81-
| clusterName | Cluster name | cluster-1 |
82-
| createDomainScript | Script used to create the domain | /u01/weblogic/create-domain-script.sh |
8375
| domainName | Name of the WebLogic domain to create | base_domain |
84-
| domainUid | Unique id identifying a domain. The id must be unique across all domains in a Kubernetes cluster | domain1 |
85-
| exposeAdminT3Channel | Boolean to indicate if the channel should be exposed as a service | false |
86-
| exposeAdminNodePort | Boolean to indicate if the adminNodePort will be exposed | false |
87-
| imagePullSecretName | Name of the Kubernetes secret to access the Docker Store to pull the Weblogic Docker image | |
88-
| loadBalancer | Load balancer to deploy. Supported values are: traefik, none | traefik |
89-
| 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 |
9382
| managedServerNameBase | Base string used to generate managed server names | managed-server |
9483
| 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 |
84+
| weblogicImage | WebLogic Docker image | store/oracle/weblogic:12.2.1.3 |
85+
| 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 |
9790
| 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 | |
9993
| t3ChannelPort | Port for the T3Channel of the NetworkAccessPoint | 30012 |
10094
| 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 |
98+
| loadBalancer | Load balancer to deploy. Supported values are: APACHE, TRAEFIX, VOYAGER, NONE | TRAEFIK |
99+
| loadBalancerVolumePath | Docker volume path for APACHE. | |
100+
| loadBalancerExposeAdminPort| If the admin port is going to be exposed for APACHE | false |
101+
| loadBalancerWebPort| Load balancer web port | 30305 |
102+
| loadBalancerDashboardPort | Load balancer dashboard port | 30315 |
103+
| javaOptions | Java option for WebLogic Server | -Dweblogic.StdoutDebugEnabled=false |
101104

102105
Specify parameters to override default values using the `--set key=value[,key=value]` argument to helm install. For example:
103106

104107
```bash
105-
helm install weblogic-domain --name my-release --namespace my-namespace --set managedServerCount=3
108+
helm install weblogic-domain --name my-release --namespace my-namespace --set configuredManagedServerCount=3
106109
```
107110

108111
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example:

0 commit comments

Comments
 (0)