Skip to content

Commit 9e1d362

Browse files
GitHub Actionsjmagak
authored andcommitted
Fix inconsistencies with referencing my-rhdh-secrets
1 parent a5d3462 commit 9e1d362

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,20 @@ data:
4545
----
4646
--
4747

48-
. Create a secret named `{my-product-secret}` and add a key named `BACKEND_SECRET` with a `Base64-encoded` string value as shown in the following example:
48+
. Create a `_<my-product-secrets>_` secret and add a key named `BACKEND_SECRET` with a `Base64-encoded` string value as shown in the following example:
4949
+
5050
--
5151
[source,yaml,subs="+quotes,+attributes"]
5252
----
5353
apiVersion: v1
5454
kind: Secret
5555
metadata:
56-
name: `{my-product-secret}`
56+
name: `_<my-product-secrets>_` # <1>
5757
stringData:
5858
# TODO: See https://backstage.io/docs/auth/service-to-service-auth/#setup
5959
BACKEND_SECRET: "xxx"
6060
----
61+
<1> Replace `<my-product-secrets>` with a unique identifier for your secret configuration.
6162

6263
[IMPORTANT]
6364
====
@@ -105,8 +106,9 @@ spec:
105106
- name: "app-config-rhdh"
106107
extraEnvs:
107108
secrets:
108-
- name: `{my-product-secret}`
109+
- name: `_<my-product-secrets>_` # <1>
109110
----
111+
<1> Replace `<my-product-secrets>` with a unique identifier for your secret configuration.
110112
--
111113

112114
. Set up a Google-managed certificate by creating a `ManagedCertificate` object which you must attach to the Ingress as shown in the following example:

modules/installation/proc-rhdh-deploy-aks-operator.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,9 @@ spec:
147147
- name: "app-config-rhdh"
148148
extraEnvs:
149149
secrets:
150-
- name: `{my-product-secret}`
150+
- name: `_<my-product-secrets>_` # <1>
151151
----
152+
<1> Replace `<my-product-secrets>` with a unique identifier for your secret configuration.
152153
--
153154

154155
. Apply the CR manifest to your namespace:

0 commit comments

Comments
 (0)