Skip to content

Commit 46635d2

Browse files
authored
Document nodeSelector and affinity in values.yaml (#1944)
* Document nodeSelector and affinity in values.yaml * Review comments
1 parent e40ba85 commit 46635d2

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

kubernetes/charts/weblogic-operator/values.yaml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,18 @@ externalRestHttpsPort: 31001
6868
# Valid values are: "SEVERE", "WARNING", "INFO", "CONFIG", "FINE", "FINER", and "FINEST".
6969
javaLoggingLevel: "INFO"
7070

71+
# nodeSelector specifies a matching rule that the Kubernetes scheduler will use when selecting the node
72+
# where the operator will run. If the nodeSelector value is specified, then this content will be added to
73+
# the operator's deployment. See https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector
74+
# for more information on node selectors.
75+
#nodeSelector:
76+
77+
# affinity specifies a set of matching rules related to the presence of other workloads that the Kubernetes scheduler
78+
# will use when selecting the node where the operator will run. If the affinity value is specified, then this content
79+
# will be added to the operator's deployment. See https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
80+
# for more information on affinity and anti-affinity.
81+
#affinity:
82+
7183
# Values related to debugging the operator.
7284
# Customers should not need to use the following properties
7385

@@ -94,10 +106,6 @@ internalDebugHttpPort: 30999
94106
# Otherwise, it is ignored.
95107
externalDebugHttpPort: 30999
96108

97-
# javaLoggingLevel specifies the level of Java logging that should be enabled in the operator.
98-
# Valid values are: "SEVERE", "WARNING", "INFO", "CONFIG", "FINE", "FINER", and "FINEST".
99-
javaLoggingLevel: "INFO"
100-
101109
# elkIntegrationEnabled specifies whether or not ELK integration is enabled.
102110
elkIntegrationEnabled: false
103111

0 commit comments

Comments
 (0)