Skip to content

Commit b094568

Browse files
committed
v1alpha1 is deprecated, use v1alpha3
Signed-off-by: Fabrice Flore-Thébault <[email protected]>
1 parent b246810 commit b094568

8 files changed

+16
-16
lines changed

modules/authorization/proc-defining-authorizations-in-external-files-by-using-the-operator.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ $ oc create configmap rbac-policies \
8080
.`Backstage` Custom resource fragment
8181
[source,yaml]
8282
----
83-
apiVersion: rhdh.redhat.com/v1alpha1
83+
apiVersion: rhdh.redhat.com/v1alpha3
8484
kind: Backstage
8585
spec:
8686
application:

modules/configuring-external-databases/proc-configuring-postgresql-instance-using-the-operator.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ You can configure an external PostgreSQL instance using the {product} Operator.
77

88
* You are using a supported version of PostgreSQL. For more information, see the link:https://access.redhat.com/support/policy/updates/developerhub[Product life cycle page].
99
* You have the following details:
10-
** `db-host`: Denotes your PostgreSQL instance Domain Name System (DNS) or IP address
10+
** `db-host`: Denotes your PostgreSQL instance Domain Name System (DNS) or IP address
1111
** `db-port`: Denotes your PostgreSQL instance port number, such as `5432`
1212
** `username`: Denotes the user name to connect to your PostgreSQL instance
1313
** `password`: Denotes the password to connect to your PostgreSQL instance
@@ -16,9 +16,9 @@ You can configure an external PostgreSQL instance using the {product} Operator.
1616

1717
[NOTE]
1818
====
19-
By default, {product-short} uses a database for each plugin and automatically creates it if none is found. You might need the `Create Database` privilege in addition to `PSQL Database` privileges for configuring an external PostgreSQL instance.
19+
By default, {product-short} uses a database for each plugin and automatically creates it if none is found. You might need the `Create Database` privilege in addition to `PSQL Database` privileges for configuring an external PostgreSQL instance.
2020
====
21-
21+
2222

2323
.Procedure
2424

@@ -39,7 +39,7 @@ stringData:
3939
postgres-key.key: |-
4040
-----BEGIN CERTIFICATE-----
4141
<tls-private-key> <3>
42-
postgres-crt.pem: |-
42+
postgres-crt.pem: |-
4343
-----BEGIN CERTIFICATE-----
4444
<tls-certificate-key> <4>
4545
# ...
@@ -79,14 +79,14 @@ EOF
7979
[source,terminal]
8080
----
8181
cat <<EOF | oc -n <your-namespace> create -f -
82-
apiVersion: rhdh.redhat.com/v1alpha1
82+
apiVersion: rhdh.redhat.com/v1alpha3
8383
kind: Backstage
8484
metadata:
8585
name: <backstage-instance-name>
8686
spec:
8787
database:
8888
enableLocalDb: false <1>
89-
application:
89+
application:
9090
extraFiles:
9191
mountPath: <path> # e g /opt/app-root/src
9292
secrets:
@@ -95,10 +95,10 @@ spec:
9595
extraEnvs:
9696
secrets:
9797
- name: <cred-secret> <3>
98-
# ...
98+
# ...
9999
----
100100
<1> Set the value of the `enableLocalDb` parameter to `false` to disable creating local PostgreSQL instances.
101-
<2> Provide the name of the certificate secret if you have configured a TLS connection.
101+
<2> Provide the name of the certificate secret if you have configured a TLS connection.
102102
<3> Provide the name of the credential secret that you created.
103103
+
104104
[NOTE]

modules/configuring/proc-adding-custom-configuration-files-by-using-the-operator.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ image::{imagesdir}/rhdh/operator-install-2.png[]
2020
+
2121
[source,yaml,subs="+attributes,+quotes"]
2222
----
23-
apiVersion: rhdh.redhat.com/v1alpha1
23+
apiVersion: rhdh.redhat.com/v1alpha3
2424
kind: Backstage
2525
metadata:
2626
name: developer-hub

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To use the {product-short} operator to run {product} with your custom configurat
1919
====
2020
[source,yaml,subs="+attributes,+quotes"]
2121
----
22-
apiVersion: rhdh.redhat.com/v1alpha1
22+
apiVersion: rhdh.redhat.com/v1alpha3
2323
kind: Backstage
2424
metadata:
2525
name: {my-product-cr-name}
@@ -46,7 +46,7 @@ spec:
4646
====
4747
[source,yaml,subs="+attributes,+quotes"]
4848
----
49-
apiVersion: rhdh.redhat.com/v1alpha1
49+
apiVersion: rhdh.redhat.com/v1alpha3
5050
kind: Backstage
5151
metadata:
5252
name: _<{my-product-cr-name}>_

modules/dynamic-plugins/proc-config-dynamic-plugins-rhdh-operator.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ image::rhdh/operator-install-2.png[]
5454
+
5555
[source,yaml]
5656
----
57-
apiVersion: rhdh.redhat.com/v1alpha1
57+
apiVersion: rhdh.redhat.com/v1alpha3
5858
kind: Backstage
5959
metadata:
6060
name: my-rhdh

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ kubectl patch serviceaccount default \
8787
--
8888
[source,yaml,subs="attributes+"]
8989
----
90-
apiVersion: rhdh.redhat.com/v1alpha1
90+
apiVersion: rhdh.redhat.com/v1alpha3
9191
kind: Backstage
9292
metadata:
9393
# TODO: this the name of your {product-short} instance

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ kubectl patch serviceaccount default \
9090
.Custom Resource fragment
9191
[source,yaml,subs="attributes+"]
9292
----
93-
apiVersion: rhdh.redhat.com/v1alpha1
93+
apiVersion: rhdh.redhat.com/v1alpha3
9494
kind: Backstage
9595
metadata:
9696
# This is the name of your {product-short} instance

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ stringData:
133133
--
134134
[source,yaml]
135135
----
136-
apiVersion: rhdh.redhat.com/v1alpha1
136+
apiVersion: rhdh.redhat.com/v1alpha3
137137
kind: Backstage
138138
metadata:
139139
name: <your-rhdh-cr>

0 commit comments

Comments
 (0)