Skip to content

Commit a1f07bf

Browse files
GitHub Actionsjmagak
authored andcommitted
Fix inconsistent reference to the app config file
1 parent 1f1ccc2 commit a1f07bf

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
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
@@ -90,7 +90,7 @@ spec:
9090
- name: rbac-policies
9191
----
9292

93-
. Update your {product-short} `app-config.yaml` configuration file to use the `rbac-policies.csv` and `rbac-conditional-policies.yaml` external files:
93+
. Update your {product-short} {my-app-config-file} configuration file to use the `rbac-policies.csv` and `rbac-conditional-policies.yaml` external files:
9494
+
9595
.`app-config.yml` fragment
9696
[source,yaml]

modules/customizing-templates/proc-adding-templates.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You can add an existing template to your {product} instance by using the Catalog
1515
1616
.Procedure
1717

18-
* In the `app-config.yaml` configuration file, modify the `catalog.rules` section to include a rule for templates, and configure the `catalog.locations` section to point to the template that you want to add, as shown in the following example:
18+
* In the {my-app-config-file} configuration file, modify the `catalog.rules` section to include a rule for templates, and configure the `catalog.locations` section to point to the template that you want to add, as shown in the following example:
1919
+
2020
[source,yaml]
2121
----

modules/customizing-the-home-page/proc-defining-the-layout-of-the-product-home-page.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
** position (x and y)
1313

1414
.Procedure
15-
* Configure your {product-short} `app-config.yaml` configuration file by choosing one of the following options:
15+
* Configure your {product-short} {my-app-config-file} configuration file by choosing one of the following options:
1616
** Use the full space on smaller windows and half of the space on larger windows as follows:
1717

1818
[source,yaml]

modules/customizing-the-quick-access-card/proc-using-hosted-json-files-to-provide-data-to-the-quick-access-card.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ See xref:{installing-on-ocp-book-url}#assembly-install-rhdh-ocp[{installing-on-o
1313

1414
.Procedure
1515

16-
* To access the data from the JSON files, add the following code to the {product-short} `app-config.yaml` configuration file:
16+
* To access the data from the JSON files, add the following code to the {product-short} {my-app-config-file} configuration file:
1717

18-
* Add the following code to the `app-config.yaml` file:
18+
* Add the following code to the {my-app-config-file} file:
1919
+
2020
[source,yaml]
2121
----

modules/customizing-the-tech-radar-page/proc-customize-rhdh-tech-radar-page.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
In {product}, the Tech Radar page is provided by the `tech-radar` dynamic plugin, which is disabled by default. For information about enabling dynamic plugins in {product} see link:{LinkPluginsGuide}[Configuring plugins in {product}].
55

6-
In {product}, you can configure Learning Paths by passing the data into the `app-config.yaml` file as a proxy. The base Tech Radar URL must include the `/developer-hub/tech-radar` proxy.
6+
In {product}, you can configure Learning Paths by passing the data into the {my-app-config-file} file as a proxy. The base Tech Radar URL must include the `/developer-hub/tech-radar` proxy.
77

88
[NOTE]
99
====
@@ -22,14 +22,14 @@ You can provide data to the Tech Radar page from the following sources:
2222
.Prerequisites
2323

2424
* You have installed {product} by using either the Operator or Helm chart. For more information, see link:{installing-on-ocp-book-url}[{installing-on-ocp-book-title}].
25-
* You have specified the data sources for the Tech Radar plugin in the `integrations` section of the `app-config.yaml` file. For example, to configure GitHub as an integration, see link:{authentication-book-url}#authenticating-with-github[Authenticating with GitHub].
25+
* You have specified the data sources for the Tech Radar plugin in the `integrations` section of the {my-app-config-file} file. For example, to configure GitHub as an integration, see link:{authentication-book-url}#authenticating-with-github[Authenticating with GitHub].
2626

2727
.Procedure
2828

2929
To access the data from the JSON files, complete the following step:
3030

3131
. Enable the `./dynamic-plugins/dist/backstage-community-plugin-tech-radar` and `/dynamic-plugins/dist/backstage-community-plugin-tech-radar-backend-dynamic` plugins.
32-
. Add the following code to the `app-config.yaml` file:
32+
. Add the following code to the {my-app-config-file} file:
3333
+
3434
[source,yaml]
3535
----
@@ -55,7 +55,7 @@ For more information, see xref:{installing-on-ocp-book-url}#assembly-install-rhd
5555

5656
To use a separate service to provide the Tech Radar data, complete the following steps:
5757

58-
. Add the dedicated service as an allowed host by adding the following code to the `app-config.yaml` file:
58+
. Add the dedicated service as an allowed host by adding the following code to the {my-app-config-file} file:
5959
+
6060
[source,yaml]
6161
----
@@ -64,7 +64,7 @@ backend:
6464
allow:
6565
- host: 'hostname'
6666
----
67-
. Add the following to the `app-config.yaml` file:
67+
. Add the following to the {my-app-config-file} file:
6868
+
6969
[source,yaml]
7070
----

modules/dynamic-plugins/proc-export-third-party-plugins-rhdh.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The following is an example of default `scalprum` configuration:
6262
"scalprum": {
6363
"name": "<package_name>", // The Webpack container name matches the NPM package name, with "@" replaced by "." and "/" removed.
6464
"exposedModules": {
65-
"PluginRoot": "./src/index.ts" // The default module name is "PluginRoot" and doesn't need explicit specification in the app-config.yaml file.
65+
"PluginRoot": "./src/index.ts" // The default module name is "PluginRoot" and doesn't need explicit specification in the {my-app-config-file} file.
6666
}
6767
}
6868
----

0 commit comments

Comments
 (0)