|
1 | 1 | # Copyright 2018 Oracle Corporation and/or its affiliates. All rights reserved.
|
2 | 2 | # Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
|
3 | 3 |
|
| 4 | +# setupKubernetesCluster specifies whether or not the installation should deploy Kubernetes components |
| 5 | +# such as elasticsearch, kibana, operator RBAC roles, etc. |
4 | 6 | setupKubernetesCluster: true
|
| 7 | + |
| 8 | +# createOperator specifies whether or not the installation should create the operator and its resources. |
5 | 9 | createOperator: true
|
| 10 | + |
| 11 | +# createOperatorNamespace specifies whether or not the installation should create the Kubernetes |
| 12 | +# namespace that the operator will be deployed in. If createOperatorNamespace is false than the |
| 13 | +# namespace must exist before the operator can be installed. |
6 | 14 | createOperatorNamespace: true
|
7 |
| -operatorNamespace: weblogic-operator |
8 |
| -operatorServiceAccount: weblogic-operator |
| 15 | + |
| 16 | +# operatorNamespace specifies the name of the Kubernetes namespace that the operator will be deployed in. |
| 17 | +# It is recommended that a namespace be created for the operator rather |
| 18 | +# than using the default namespace. |
| 19 | +# The name must be lowercase |
| 20 | +operatorNamespace: "weblogic-operator" |
| 21 | + |
| 22 | +# operatorServiceAccount specifies the name of the service account that the operator will use to |
| 23 | +# make requests to the Kubernetes API server. |
| 24 | +# The name must be lowercase |
| 25 | +operatorServiceAccount: "weblogic-operator" |
| 26 | + |
| 27 | +# createDomainsNamespace is a global variable that specifies whether or not the helm installation should create the Kubernetes |
| 28 | +# namespaces for the domains specified in domainsNamespaces. |
9 | 29 | createDomainsNamespace: true
|
| 30 | + |
| 31 | +# domainsNamespaces specifies a map of WebLogic Domain namespaces which the operator manages (same as targetNamespaces but in map format) |
| 32 | +# The names must be lowercase |
| 33 | +# |
| 34 | +# Example 1: In the configuration below, the helm installation will create the Domain namespace 'namespace2' but not 'namespace1'. |
| 35 | +# |
| 36 | +# createDomainsNamespace: true |
| 37 | +# domainsNamespaces: |
| 38 | +# namespace1: |
| 39 | +# createDomainsNamespace: false |
| 40 | +# namespace2: {} |
| 41 | +# |
| 42 | +#----------------------------------- |
| 43 | +# |
| 44 | +# Example 2: In the configuration below, the helm installation will create the Domain namespace 'namespace2' but not 'namespace1'. |
| 45 | +# |
| 46 | +# createDomainsNamespace: false |
| 47 | +# domainsNamespaces: |
| 48 | +# namespace1: {} |
| 49 | +# namespace2: |
| 50 | +# createDomainsNamespace: true |
| 51 | +# |
10 | 52 | domainsNamespaces: {}
|
11 |
| -operatorImage: weblogic-kubernetes-operator:1.0 |
12 |
| -operatorImagePullPolicy: IfNotPresent |
13 |
| -#internalOperatorCert: ... |
14 |
| -#internalOperatorKey: ... |
| 53 | + |
| 54 | +# operatorImage specifies the docker image containing the operator code. |
| 55 | +operatorImage: "weblogic-kubernetes-operator:1.0" |
| 56 | + |
| 57 | +# operatorImagePullPolicy specifies the image pull policy for the operator docker image. |
| 58 | +operatorImagePullPolicy: "IfNotPresent" |
| 59 | + |
| 60 | +# externalRestEnabled specifies whether or not the operator externally exposes a REST https interface |
| 61 | +# (i.e. outside of the Kubernetes cluster). |
15 | 62 | externalRestEnabled: false
|
| 63 | + |
| 64 | +# externalRestHttpsPort specifies the node port that should be allocated for the external operator REST https interface. |
| 65 | +# This parameter is required if 'externalRestEnabled' is 'true'. |
| 66 | +# Otherwise, it is ignored. |
16 | 67 | externalRestHttpsPort: 31001
|
17 |
| -#externalOperatorCert: ... |
18 |
| -#externalOperatorKey: ... |
| 68 | + |
| 69 | +# remoteDebugNodePortEnabled specifies whether or not the operator will start a Java remote debug server on the |
| 70 | +# provided port and suspend execution until a remote debugger has attached. |
| 71 | +# The 'internalDebugHttpPort' property controls the port number inside the Kubernetes |
| 72 | +# cluster and the 'externalDebugHttpPort' property controls the port number outside |
| 73 | +# the Kubernetes cluster. |
19 | 74 | remoteDebugNodePortEnabled: false
|
| 75 | + |
| 76 | +# internalDebugHttpPort specifes the port number inside the Kubernetes cluster for the operator's Java |
| 77 | +# remote debug server. |
| 78 | +# This parameter is required if 'remoteDebugNodePortEnabled' is true. |
| 79 | +# Otherwise, it is ignored. |
20 | 80 | internalDebugHttpPort: 30999
|
| 81 | + |
| 82 | +# externalDebugHttpPort specifies the node port that should be allocated for the Kubernetes cluster for the operator's |
| 83 | +# Java remote debug server. |
| 84 | +# This parameter is required if 'remoteDebugNodePortEnabled' is true. |
| 85 | +# Otherwise, it is ignored. |
21 | 86 | externalDebugHttpPort: 30999
|
22 |
| -javaLoggingLevel: INFO |
| 87 | + |
| 88 | +# javaLoggingLevel specifies the level of Java logging that should be enabled in the operator. |
| 89 | +# Valid values are: "SEVERE", "WARNING", "INFO", "CONFIG", "FINE", "FINER", and "FINEST". |
| 90 | +javaLoggingLevel: "INFO" |
| 91 | + |
| 92 | +# elkIntegrationEnabled specifies whether or not ELK integration is enabled. |
23 | 93 | elkIntegrationEnabled: false
|
0 commit comments