Skip to content

Commit

Permalink
Fix mentions to the product project
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Jan 16, 2025
1 parent e0834a6 commit 05883da
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion modules/dynamic-plugins/proc-create-plugin-tgz-file.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ To create a plugin registry using HTTP server on {ocp-short}, run the following
.Example commands to build and deploy an HTTP server in {ocp-short}
[source,terminal]
----
oc project rhdh
oc project {my-product-namespace}
oc new-build httpd --name=plugin-registry --binary
oc start-build plugin-registry --from-dir=dynamic-plugins-root --wait
oc new-app --image-stream=plugin-registry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ If an x509 error occurs, verify that you have link:https://access.redhat.com/sol
+
[source,terminal]
----
oc get imagestream -n <project_name>
oc get imagestream -n {my-product-namespace}
----

. Enable local image lookup for both images by running the following commands:
Expand Down
2 changes: 1 addition & 1 deletion modules/installation/proc-install-rhdh-ocp-helm-cli.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ You can use the Helm CLI to install {product} on {ocp-brand-name}.
* You have installed the Helm CLI tool.

.Procedure
. Create and activate the _<rhdh>_ {ocp-short} project:
. Create and activate the _<{my-product-namespace}>_{ocp-short} project:
+
[subs="quotes+"]
----
Expand Down
2 changes: 1 addition & 1 deletion modules/installation/proc-rhdh-deploy-aks-helm.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ The previous command configures the Kubernetes client and sets the current conte
helm repo add openshift-helm-charts https://charts.openshift.io/
----

. Create and activate the _<rhdh>_ namespace:
. Create and activate the _<{my-product-namespace}>_:
+
[source,terminal,subs="quotes+"]
----
Expand Down
6 changes: 3 additions & 3 deletions modules/installation/proc-rhdh-deploy-aks-operator.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: rhdh-ingress
namespace: <your_namespace>
namespace: {my-product-namespace}
spec:
ingressClassName: webapprouting.kubernetes.azure.com
rules:
Expand Down Expand Up @@ -155,7 +155,7 @@ spec:
--
[source,terminal]
----
kubectl -n <your_namespace> apply -f rhdh.yaml
kubectl -n {my-product-namespace} apply -f rhdh.yaml
----
--

Expand All @@ -165,6 +165,6 @@ kubectl -n <your_namespace> apply -f rhdh.yaml
--
[source,terminal]
----
kubectl -n <your_namespace> delete -f rhdh.yaml
kubectl -n {my-product-namespace} delete -f rhdh.yaml
----
--
4 changes: 2 additions & 2 deletions modules/observe/proc-admin-enabling-metrics-ocp-operator.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: <custom_resource_name> # <1>
namespace: <project_name> # <2>
namespace: {my-product-namespace} # <2>
labels:
app.kubernetes.io/instance: <custom_resource_name>
app.kubernetes.io/name: backstage
spec:
namespaceSelector:
matchNames:
- <project_name>
- {my-product-namespace}
selector:
matchLabels:
rhdh.redhat.com/app: backstage-<custom_resource_name>
Expand Down
2 changes: 1 addition & 1 deletion modules/observe/proc-forward-audit-log-splunk.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ inputs:
type: application
application:
includes:
- namespace: my-developer-hub-namespace
- namespace: {my-product-namespace}
containerLimit:
maxRecordsPerSecond: 100
----
Expand Down
2 changes: 1 addition & 1 deletion modules/proc-create-plugin.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ You can create a plugin for the {product-short} application.

.Procedure

. In the terminal application, run the following command from the root of your {product-short} project:
. In the terminal application, run the following command from the root of your {my-product-namespace} project:
+
--
[source,terminal]
Expand Down
2 changes: 1 addition & 1 deletion modules/upgrade/proc-upgrade-rhdh-helm.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ It might take a few minutes to delete the resources in the older versions and to
[source,terminal]
----
oc login -u <user> -p <password> https://api.<HOSTNAME>:6443
oc project <your_namespace>
oc project {my-product-namespace}
----

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

0 comments on commit 05883da

Please sign in to comment.