Просмотр исходного кода

updated text in crd's

Signed-off-by: Bill Hamilton <bill.hamilton@delinea.com>
Bill Hamilton 2 лет назад
Родитель
Сommit
cbfad4fc0a

+ 2 - 2
config/crds/bases/external-secrets.io_clustersecretstores.yaml

@@ -3435,7 +3435,7 @@ spec:
                       https://docs.delinea.com/online-help/secret-server/start.htm
                     properties:
                       password:
-                        description: PassWord is the secret server account passWord.
+                        description: Password is the secret server account password.
                         properties:
                           secretRef:
                             description: SecretRef references a key in a secret that
@@ -3467,7 +3467,7 @@ spec:
                           URL to your secret server installation
                         type: string
                       username:
-                        description: UserName is the secret server account userName.
+                        description: Username is the secret server account username.
                         properties:
                           secretRef:
                             description: SecretRef references a key in a secret that

+ 4 - 4
deploy/crds/bundle.yaml

@@ -3792,7 +3792,7 @@ spec:
                         https://docs.delinea.com/online-help/secret-server/start.htm
                       properties:
                         password:
-                          description: PassWord is the secret server account passWord.
+                          description: Password is the secret server account password.
                           properties:
                             secretRef:
                               description: SecretRef references a key in a secret that will be used as value.
@@ -3821,7 +3821,7 @@ spec:
                             URL to your secret server installation
                           type: string
                         username:
-                          description: UserName is the secret server account userName.
+                          description: Username is the secret server account username.
                           properties:
                             secretRef:
                               description: SecretRef references a key in a secret that will be used as value.
@@ -9111,7 +9111,7 @@ spec:
                         https://docs.delinea.com/online-help/secret-server/start.htm
                       properties:
                         password:
-                          description: PassWord is the secret server account passWord.
+                          description: Password is the secret server account password.
                           properties:
                             secretRef:
                               description: SecretRef references a key in a secret that will be used as value.
@@ -9140,7 +9140,7 @@ spec:
                             URL to your secret server installation
                           type: string
                         username:
-                          description: UserName is the secret server account userName.
+                          description: Username is the secret server account username.
                           properties:
                             secretRef:
                               description: SecretRef references a key in a secret that will be used as value.

+ 7 - 4
docs/provider/secretserver.md

@@ -62,20 +62,23 @@ spec:
           key: "52622" #<SECRET_ID>
           property: "Items.0.ItemValue" #<GJSON_PROPERTY> * an empty property will return the entire secret
 ```
-### Example
+### Examples
 Using the json formatted secret below:
 
-Lookup a single top level property using secret ID.
+- Lookup a single top level property using secret ID.
+
 >spec.data.remoteRef.key = 52622 (id of the secret)<br />
 spec.data.remoteRef.property = "user" (Items.0.ItemValue user attribute)<br />
 returns: marktwain@hannibal.com
 
-Lookup a nested property using secret name.
+- Lookup a nested property using secret name.
+
 >spec.data.remoteRef.key = "external-secret-testing" (name of the secret)<br />
 spec.data.remoteRef.property = "books.1" (Items.0.ItemValue books.1 attribute)<br />
 returns: huckleberryFinn
 
-Lookup by secret ID (secret name will work as well) and return the entire secret.
+- Lookup by secret ID (*secret name will work as well*) and return the entire secret.
+
 >spec.data.remoteRef.key = "52622" (id of the secret)<br />
 spec.data.remoteRef.property = "" <br />
 returns: The entire secret in JSON format as displayed below