Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

Commit

Permalink
Remove the need for adding a Quay token as a global pull secret in th…
Browse files Browse the repository at this point in the history
…e CI install procedure (#393)

This is no longer needed since the rhdh organization is public on Quay.
  • Loading branch information
rm3l authored Jul 2, 2024
1 parent 34ce0c6 commit 2ad0e9c
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions .rhdh/docs/installing-ci-builds.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,7 @@ WARNING: The procedure below will not work properly on OpenShift clusters with h
*Procedure*

. Add your Quay token to the cluster global pull secret (link:https://docs.openshift.com/container-platform/4.14/openshift_images/managing_images/using-image-pull-secrets.html#images-update-global-pull-secret_using-image-pull-secrets[link]):
+
[source,console]
----
oc get secret/pull-secret -n openshift-config --template='{{index .data ".dockerconfigjson" | base64decode}}' > /tmp/my-global-pull-secret.yaml
oc registry login --registry="quay.io" --auth-basic="<user>:<token>" --to=/tmp/my-global-pull-secret.yaml

oc set data secret/pull-secret -n openshift-config --from-file=.dockerconfigjson=/tmp/my-global-pull-secret.yaml

rm -f /tmp/my-global-pull-secret.yaml
----

. Run the link:../scripts/install-rhdh-catalog-source.sh[installation script] to create the RHDH Operator CatalogSource in your cluster. By default, it installs the Release Candidate version, but the `--next` option allows to install the current development build (from the `main` branch). For example:
. Run the link:../scripts/install-rhdh-catalog-source.sh[installation script] to create the RHDH Operator CatalogSource in your cluster. By default, it installs the Release Candidate or GA version (from the `1.yy.x` branch), but the `--next` option allows to install the current development build (from the `main` branch). For example:
+
[source,console]
----
Expand Down

0 comments on commit 2ad0e9c

Please sign in to comment.