Skip to content

Commit 5ed0009

Browse files
author
GitHub Actions
committed
Fix inconsistencies with referencing my-rhdh-secrets
1 parent 62908ce commit 5ed0009

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

modules/configuring/proc-provisioning-your-custom-configuration.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ $ oc create configmap {my-app-config-config-map} --from-file={my-app-config-file
7171
+
7272
Alternatively, link:https://docs.redhat.com/en/documentation/openshift_container_platform/{ocp-version}/html-single/nodes/index#nnodes-pods-configmap-create-from-console_configmaps[create the config map by using the web console].
7373

74-
.. Provision your `_<my-product-secrets>_.txt` file to the `<my-product-secrets>` secret in the _<{my-product-namespace}>_ project.
74+
.. Provision your `_<my-product-secrets>_.txt` file to the `_<my-product-secrets>_` secret in the _<{my-product-namespace}>_ project.
7575
+
7676
[source,terminal,subs="+attributes,+quotes"]
7777
----
78-
$ oc create secret generic `<my-product-secrets>` --from-file=`_<my-product-secrets>_.txt` --namespace={my-product-namespace}
78+
$ oc create secret generic `_<my-product-secrets>_` --from-file=`_<my-product-secrets>_.txt` --namespace={my-product-namespace}
7979
----
8080
+
8181
Alternatively,

modules/configuring/proc-using-the-operator-to-run-rhdh-with-your-custom-configuration.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spec:
3131
- name: {my-app-config-config-map}
3232
extraEnvs:
3333
secrets:
34-
- name: `<my-product-secrets>`
34+
- name: `_<my-product-secrets>_`
3535
extraFiles:
3636
mountPath: /opt/app-root/src
3737
replicas: 1
@@ -60,7 +60,7 @@ spec:
6060
dynamicPluginsConfigMapName: dynamic-plugins-rhdh
6161
extraEnvs:
6262
secrets:
63-
- name: `<my-product-secrets>`
63+
- name: `_<my-product-secrets>_`
6464
- name: {my-product-database-secrets}
6565
extraFiles:
6666
mountPath: /opt/app-root/src
@@ -136,27 +136,27 @@ spec:
136136
`spec.application.extraEnvs.secrets`:::
137137
Enter your environment variables secret name list.
138138
+
139-
.Inject the environment variables in your `<my-product-secrets>` secret
139+
.Inject the environment variables in your `_<my-product-secrets>_` secret
140140
====
141141
[source,yaml,subs="+attributes,+quotes"]
142142
----
143143
spec:
144144
application:
145145
extraEnvs:
146146
secrets:
147-
- name: `<my-product-secrets>`
147+
- name: `_<my-product-secrets>_`
148148
----
149149
====
150150
+
151-
.Inject the environment variables in the `<my-product-secrets>` and `{my-product-database-secrets}` secrets
151+
.Inject the environment variables in the `_<my-product-secrets>_` and `{my-product-database-secrets}` secrets
152152
====
153153
[source,yaml,subs="+attributes,+quotes"]
154154
----
155155
spec:
156156
application:
157157
extraEnvs:
158158
secrets:
159-
- name: `<my-product-secrets>`
159+
- name: `_<my-product-secrets>_`
160160
- name: {my-product-database-secrets}
161161
----
162162
====

modules/installation/proc-deploy-rhdh-instance-eks.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ spec:
104104
- name: "app-config-rhdh"
105105
extraEnvs:
106106
secrets:
107-
- name: `<my-product-secrets>` # <1>
107+
- name: `_<my-product-secrets>_` # <1>
108108
----
109109
<1> Replace `<my-product-secrets>` with a unique identifier for your secret configuration.
110110
--

0 commit comments

Comments
 (0)