Skip to content

Commit 90611a3

Browse files
jmagakGitHub Actions
and
GitHub Actions
authored
Rhidp 5375 consistent mentions to the product project (redhat-developer#858)
Co-authored-by: GitHub Actions <[email protected]>
1 parent 3a137d5 commit 90611a3

9 files changed

+18
-18
lines changed

modules/dynamic-plugins/proc-create-plugin-tgz-file.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ To create a plugin registry using HTTP server on {ocp-short}, run the following
5050
.Example commands to build and deploy an HTTP server in {ocp-short}
5151
[source,terminal]
5252
----
53-
oc project rhdh
53+
oc project {my-product-namespace}
5454
oc new-build httpd --name=plugin-registry --binary
5555
oc start-build plugin-registry --from-dir=dynamic-plugins-root --wait
5656
oc new-app --image-stream=plugin-registry

modules/installation/proc-install-rhdh-airgapped-environment-ocp-helm.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ If an x509 error occurs, verify that you have link:https://access.redhat.com/sol
9494
+
9595
[source,terminal]
9696
----
97-
oc get imagestream -n <project_name>
97+
oc get imagestream -n {my-product-namespace}
9898
----
9999

100100
. Enable local image lookup for both images by running the following commands:

modules/installation/proc-install-rhdh-ocp-helm-cli.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can use the Helm CLI to install {product} on {ocp-brand-name}.
1414
* You have installed the Helm CLI tool.
1515

1616
.Procedure
17-
. Create and activate the _<rhdh>_ {ocp-short} project:
17+
. Create and activate the _<{my-product-namespace}>_ {ocp-short} project:
1818
+
1919
[subs="quotes+"]
2020
----

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ The previous command configures the Kubernetes client and sets the current conte
108108
helm repo add openshift-helm-charts https://charts.openshift.io/
109109
----
110110

111-
. Create and activate the _<rhdh>_ namespace:
111+
. Create and activate the _<{my-product-namespace}>_ namespace:
112112
+
113113
[source,terminal,subs="quotes+"]
114114
----

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ kubectl -n <your_namespace> create secret docker-registry rhdh-pull-secret \
5656
. Create an Ingress manifest file, named `rhdh-ingress.yaml`, specifying your {product-short} service name as follows:
5757
+
5858
--
59-
[source,yaml]
59+
[source,yaml,subs="+attributes,+quotes"]
6060
----
6161
apiVersion: networking.k8s.io/v1
6262
kind: Ingress
6363
metadata:
6464
name: rhdh-ingress
65-
namespace: <your_namespace>
65+
namespace: {my-product-namespace}
6666
spec:
6767
ingressClassName: webapprouting.kubernetes.azure.com
6868
rules:
@@ -153,18 +153,18 @@ spec:
153153
. Apply the CR manifest to your namespace:
154154
+
155155
--
156-
[source,terminal]
156+
[source,terminal,subs="+attributes,+quotes"]
157157
----
158-
kubectl -n <your_namespace> apply -f rhdh.yaml
158+
kubectl -n {my-product-namespace} apply -f rhdh.yaml
159159
----
160160
--
161161

162162
. Access the deployed {product-short} using the URL: `https://<app_address>`, where <app_address> is the Ingress address obtained earlier (for example, `https://108.141.70.228`).
163163
. Optional: To delete the CR, run the following command:
164164
+
165165
--
166-
[source,terminal]
166+
[source,terminal,subs="+attributes,+quotes"]
167167
----
168-
kubectl -n <your_namespace> delete -f rhdh.yaml
168+
kubectl -n {my-product-namespace} delete -f rhdh.yaml
169169
----
170170
--

modules/observe/proc-admin-enabling-metrics-ocp-operator.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ Currently, the {product} Operator does not support creating a `ServiceMonitor` c
2020

2121
. Create the `ServiceMonitor` CR as a YAML file:
2222
+
23-
[source,yaml]
23+
[source,yaml,subs="+attributes,+quotes"]
2424
----
2525
apiVersion: monitoring.coreos.com/v1
2626
kind: ServiceMonitor
2727
metadata:
2828
name: <custom_resource_name> # <1>
29-
namespace: <project_name> # <2>
29+
namespace: {my-product-namespace} # <2>
3030
labels:
3131
app.kubernetes.io/instance: <custom_resource_name>
3232
app.kubernetes.io/name: backstage
3333
spec:
3434
namespaceSelector:
3535
matchNames:
36-
- <project_name>
36+
- {my-product-namespace}
3737
selector:
3838
matchLabels:
3939
rhdh.redhat.com/app: backstage-<custom_resource_name>

modules/observe/proc-forward-audit-log-splunk.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ serviceAccount:
8282
+
8383
--
8484
.Example `inputs` configuration
85-
[source,yaml]
85+
[source,yaml,subs="+attributes,+quotes"]
8686
----
8787
inputs:
8888
- name: my-app-logs-input
8989
type: application
9090
application:
9191
includes:
92-
- namespace: my-developer-hub-namespace
92+
- namespace: {my-product-namespace}
9393
containerLimit:
9494
maxRecordsPerSecond: 100
9595
----

modules/proc-create-plugin.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You can create a plugin for the {product-short} application.
1111

1212
.Procedure
1313

14-
. In the terminal application, run the following command from the root of your {product-short} project:
14+
. In the terminal application, run the following command from the root of your {my-product-namespace} project:
1515
+
1616
--
1717
[source,terminal]

modules/upgrade/proc-upgrade-rhdh-helm.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ It might take a few minutes to delete the resources in the older versions and to
2929

3030
. Log in to the {ocp-short} cluster as the cluster administrator and switch to the project or namespace in which {product-short} was installed.
3131
+
32-
[source,terminal]
32+
[source,terminal,subs="+attributes,+quotes"]
3333
----
3434
oc login -u <user> -p <password> https://api.<HOSTNAME>:6443
35-
oc project <your_namespace>
35+
oc project {my-product-namespace}
3636
----
3737

3838
. For a new version of the {product-short} Helm chart, run the following upgrade command:

0 commit comments

Comments
 (0)