Skip to content

Commit

Permalink
update rm readme from feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
BraisVQ committed Dec 12, 2023
1 parent ab44ea0 commit 85364b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release-manager/files/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ As outlined above, a release bundle is essentially a state of all involved Git r

You cannot modify the image SHA (it is the result of what the component pipeline builds), but you can influence the OpenShift template. One reason to do so is that e.g. routes or `ConfigMap` values will need to differ between environments, and you need to tell the orchestration pipeline to parametrize the templates, and to supply the right values when the templates are applied in the target environment.

When the orchestration pipeline exports configuration, it has no way to tell which values should actually be parameters. For example, you might have a route `x.foo-dev.dev-cluster.com` in DEV, and want this to be `x.foo-test.dev-cluster.com` in QA and `x.foo-prod.prod-cluster.com` in PROD. In the exported template, the value `x.foo-dev.dev-cluster.com` will be hardcoded. To fix this, you can create three files in the release manager repository, `dev.env`, `qa.env` and `prod.env`. These files may contain `PARAM=value` lines, like this:
When the orchestration pipeline exports configuration, it has no way to tell which values should actually be parameters. For example, you might have a route `x.foo-dev.dev-cluster.com` in DEV, and want this to be `x.foo-test.dev-cluster.com` in QA and `x.foo-prod.prod-cluster.com` in PROD. In the exported template, the value `x.foo-dev.dev-cluster.com` will be hardcoded. To fix this, you can create three files in the component openshift folder, `dev.env`, `qa.env` and `prod.env`. These files may contain `PARAM=value` lines, like this:

dev.env
```
Expand Down

0 comments on commit 85364b2

Please sign in to comment.