Skip to content

Commit 6ad0759

Browse files
authored
(DOCSP-21404) Fix certificate name format (#871)
* (DOCSP-21404) Fix certificate name format
1 parent 882921e commit 6ad0759

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

source/includes/code-examples/yaml-files/example-opsmgr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spec:
3131
# name of the secret that contains the Application
3232
# Database's TLS certificate. If you omit
3333
# this setting, name the secret
34-
# <metadata.name>-appdb-cert.
34+
# <metadata.name>-db-cert.
3535
tls:
3636
ca: "appdb-ca" # Optional. Name of the ConfigMap file
3737
# containing the certicate authority that

source/includes/steps-source-deploy-om-resource.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ content: |
1010
1111
.. code-block:: sh
1212
13-
kubectl create secret tls <metadata.name>-appdb-cert \
13+
kubectl create secret tls <metadata.name>-db-cert \
1414
--cert=<appdb-tls-cert> \
1515
--key=<appdb-tls-key>
1616

source/reference/k8s-operator-om-specification.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Optional |onprem| Resource Settings
217217
- :opsmgrkube:`spec.applicationDatabase.security.tls.secretRef.name`
218218
- :opsmgrkube:`spec.applicationDatabase.security.tls.secretRef.prefix`
219219

220-
You must name your secret ``<prefix>-<metadata.name>-appdb-cert`` if
220+
You must name your secret ``<prefix>-<metadata.name>-db-cert`` if
221221
all of the following items are true:
222222

223223
- You set

0 commit comments

Comments
 (0)