Skip to content

Commit 821da81

Browse files
jshum2479rjeberhard
authored andcommitted
wording change
1 parent f48866f commit 821da81

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

documentation/domains/Domain.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@
736736
"$ref": "#/definitions/PersistentVolume"
737737
},
738738
"wdtModelEncryptionPassphraseSecret": {
739-
"description": "Specifies the secret name of the WebLogic Deployment Tool encryption passphrase if the WDT models provided in the \u0027domainCreationImages\u0027 or \u0027domainCreationConfigMap\u0027 are encrypted using the WebLogic Deployment Tool \u0027encryptModel\u0027 command. The secret must use the key \u0027passphrase\u0027 containing the actual passphrase for decryption.",
739+
"description": "Specifies the secret name of the WebLogic Deployment Tool encryption passphrase if the WDT models provided in the \u0027domainCreationImages\u0027 or \u0027domainCreationConfigMap\u0027 are encrypted using the WebLogic Deployment Tool \u0027encryptModel\u0027 command. The secret must use the key \u0027passphrase\u0027 containing the actual passphrase for encryption.",
740740
"type": "string"
741741
},
742742
"domain": {

documentation/domains/Domain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ The current status of the operation of the WebLogic domain. Updated automaticall
249249
| `runDomainInitContainerAsRoot` | Boolean | Specifies whether the operator will run the domain initialization init container in the introspector job as root. This may be needed in some environments to create the domain home directory on PV. Defaults to false. |
250250
| `setDefaultSecurityContextFsGroup` | Boolean | Specifies whether the operator will set the default 'fsGroup' in the introspector job pod security context. This is needed to create the domain home directory on PV in some environments. If the 'fsGroup' is specified as part of 'spec.introspector.serverPod.podSecurityContext', then the operator will use that 'fsGroup' instead of the default 'fsGroup'. Defaults to true. |
251251
| `waitForPvcToBind` | Boolean | Specifies whether the operator will wait for the PersistentVolumeClaim to be bound before proceeding with the domain creation. Defaults to true. |
252-
| `wdtModelEncryptionPassphraseSecret` | string | Specifies the secret name of the WebLogic Deployment Tool encryption passphrase if the WDT models provided in the 'domainCreationImages' or 'domainCreationConfigMap' are encrypted using the WebLogic Deployment Tool 'encryptModel' command. The secret must use the key 'passphrase' containing the actual passphrase for decryption. |
252+
| `wdtModelEncryptionPassphraseSecret` | string | Specifies the secret name of the WebLogic Deployment Tool encryption passphrase if the WDT models provided in the 'domainCreationImages' or 'domainCreationConfigMap' are encrypted using the WebLogic Deployment Tool 'encryptModel' command. The secret must use the key 'passphrase' containing the actual passphrase for encryption. |
253253

254254
### Model
255255

kubernetes/crd/domain-crd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apiVersion: apiextensions.k8s.io/v1
55
kind: CustomResourceDefinition
66
metadata:
77
annotations:
8-
weblogic.sha256: d4d20a0a6c4d30fb25539595ecbb553264ab5ac1647009db79c696579f049197
8+
weblogic.sha256: 0407ffe9beb7d54809e375d10378d614d066299f1533d885c8b97f056c94bf1a
99
name: domains.weblogic.oracle
1010
spec:
1111
group: weblogic.oracle
@@ -282,7 +282,7 @@ spec:
282282
the 'domainCreationImages' or 'domainCreationConfigMap'
283283
are encrypted using the WebLogic Deployment Tool 'encryptModel'
284284
command. The secret must use the key 'passphrase' containing
285-
the actual passphrase for decryption.
285+
the actual passphrase for encryption.
286286
type: string
287287
domain:
288288
description: Describes the configuration for creating an initial

operator/src/main/java/oracle/kubernetes/weblogic/domain/model/InitializeDomainOnPV.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public class InitializeDomainOnPV {
5555
@Description("Specifies the secret name of the WebLogic Deployment Tool encryption passphrase if the WDT models "
5656
+ "provided in the 'domainCreationImages' or 'domainCreationConfigMap' are encrypted using the "
5757
+ "WebLogic Deployment Tool 'encryptModel' command. "
58-
+ "The secret must use the key 'passphrase' containing the actual passphrase for decryption.")
58+
+ "The secret must use the key 'passphrase' containing the actual passphrase for encryption.")
5959
String wdtModelEncryptionPassphraseSecret;
6060

6161
public PersistentVolume getPersistentVolume() {

0 commit comments

Comments
 (0)