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
This section creates a ConfigMap that passes configuration information to the operator including the list of namespaces in which the operator will manage domains, the service account that the operator will use to authenticate to the Kubernetes API server, and the certificates that the operator’s REST server will use.
@@ -279,7 +279,7 @@ This section creates a ConfigMap that passes configuration information to the op
279
279
apiVersion: v1
280
280
kind: ConfigMap
281
281
metadata:
282
-
name: operator-config-map
282
+
name: weblogic-operator-config-map
283
283
namespace: weblogic-operator
284
284
data:
285
285
serviceaccount: weblogic-operator
@@ -295,7 +295,7 @@ This section defines a secret that contains the keys needed by the operator for
The input properties for controlling the domain's persistent volume, persistent volume claim and storage class names have been removed. These names are now derived from the domain uid.
164
163
165
164
| Artifact Type | Previous Name | New Name |
166
165
| --- | --- | --- |
167
166
| persistent volume | ${domainUid}-${persistenceVolume} or ${persistenceVolume} | ${domainUID}-weblogic-domain-pv |
| n volume | operator-config-volume | weblogic-operator-config-map-volume |
177
+
| n volume | operator-secrets-volume | weblogic-operator-secrets-volume |
178
+
| n volume | config-map-scripts | create-weblogic-domain-job-config-map-volume |
179
+
| n volume | pv-storage | weblogic-domain-storage-volume |
180
+
| n volume | secrets | weblogic-credentials-volume |
181
+
| n volume | scripts | weblogic-domain-config-map-volume |
182
+
183
+
Temp note: weblogic-domain-config-map is created on the fly by ConfigMapHelper.java. It's referenced by weblogic-domain-config-map-volume.
184
+
185
+
TBD - we're appending type to:
186
+
- config maps
187
+
- secrets
188
+
- pvs (global)
189
+
- pvcs
190
+
- storage classes
191
+
- jobs
192
+
but not to:
193
+
- namespaces (global)
194
+
- deployments
195
+
- pods
196
+
- services
197
+
- service accounts
198
+
- ports
199
+
- maybe volumes
200
+
- maybe volume mounts
201
+
202
+
Note: The input properties for controlling the domain's persistent volume, persistent volume claim and storage class names have been removed. These names are now derived from the domain uid.
0 commit comments