Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch stage data plane to upstream operator #676

Merged
merged 1 commit into from
Dec 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion dp-terraform/helm/rhacs-terraform/terraform_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,15 @@ case $ENVIRONMENT in
FM_ENDPOINT="https://xtr6hh3mg6zc80v.api.stage.openshift.com"
OBSERVABILITY_GITHUB_TAG="master"
OBSERVABILITY_OBSERVATORIUM_GATEWAY="https://observatorium-mst.api.stage.openshift.com"
OPERATOR_USE_UPSTREAM="true"
OPERATOR_VERSION="v3.73.0-nightly-20221215"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Who and when will update this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Must be updated manually by the acscs release manager - similar to how we already handle OPERATOR_VERSION, stage should run a more recent version than prod. The difference is that now we can also run version in-between official releases.

;;

prod)
FM_ENDPOINT="https://api.openshift.com"
OBSERVABILITY_GITHUB_TAG="production"
OBSERVABILITY_OBSERVATORIUM_GATEWAY="https://observatorium-mst.api.openshift.com"
OPERATOR_VERSION="v3.73.0"
;;

*)
Expand Down Expand Up @@ -87,7 +90,7 @@ helm upgrade rhacs-terraform "${SCRIPT_DIR}" ${HELM_DEBUG_FLAGS:-} \
--set acsOperator.enabled=true \
--set acsOperator.source="${OPERATOR_SOURCE}" \
--set acsOperator.sourceNamespace=openshift-marketplace \
--set acsOperator.version=v3.73.0 \
--set acsOperator.version="${OPERATOR_VERSION}" \
--set acsOperator.upstream="${OPERATOR_USE_UPSTREAM}" \
--set fleetshardSync.image="quay.io/app-sre/acs-fleet-manager:${FLEETSHARD_SYNC_TAG}" \
--set fleetshardSync.authType="RHSSO" \
Expand Down