Skip to content
Closed
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion ci-operator/templates/cluster-launch-installer-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,11 @@ objects:
export SSH_KEY="$( cat /etc/openshift-installer/ssh-publickey )"
export EC2_AMI_OVERRIDE=ami-06d864b4154214132
export EXPIRATION_DATE=$( date -d '4 hours' --iso=minutes --utc )
export PULL_SECRET="$(jq -c </etc/openshift-installer/pull-secret)"
envsubst </etc/openshift-installer/openshift.yaml >/tmp/cluster/inputs.yaml
)
mkdir /tmp/artifacts/installer
cp /tmp/cluster/inputs.yaml /tmp/artifacts/installer/
sed 's/pullSecret: .*/pullSecret: '{"REDACTED": {}}/' </tmp/cluster/inputs.yaml >/tmp/artifacts/installer/inputs.yaml

echo "Invoking installer ..."

Expand Down
4 changes: 2 additions & 2 deletions cluster/test-deploy/aws/openshift.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ nodePools:
# The platform used for deploying.
platform: aws

# The path the pull secret file in JSON format.
# The pull secret in JSON format.
# This is known to be a "Docker pull secret" as produced by the docker login [1] command.
# A sample JSON content is shown in [2].
# You can download the pull secret from your Account overview page at [3].
Expand All @@ -251,7 +251,7 @@ platform: aws
# [2] https://coreos.com/os/docs/latest/registry-authentication.html#manual-registry-auth-setup
#
# [3] https://account.coreos.com/overview
pullSecretPath: pull-secret
pullSecret: '${PULL_SECRET}'

worker:
# The name of the node pool(s) to use for workers
Expand Down