diff --git a/ci-operator/step-registry/gather/aws-console/gather-aws-console-commands.sh b/ci-operator/step-registry/gather/aws-console/gather-aws-console-commands.sh index 2000f4bc6d707..5aa40cd12f3cd 100755 --- a/ci-operator/step-registry/gather/aws-console/gather-aws-console-commands.sh +++ b/ci-operator/step-registry/gather/aws-console/gather-aws-console-commands.sh @@ -52,9 +52,12 @@ if [[ "${CLUSTER_TYPE:-}" =~ ^aws-s?c2s$ ]]; then source "${SHARED_DIR}/unset-proxy.sh" fi +echo "Installed locales" +locale -a + cat "${TMPDIR}/node-provider-IDs.txt" | sort | grep . | uniq | while read -r INSTANCE_ID do echo "Gathering console logs for ${INSTANCE_ID}" - LC_ALL=en_US.UTF-8 aws --region "${REGION}" ec2 get-console-output --instance-id "${INSTANCE_ID}" --output text > "${ARTIFACT_DIR}/${INSTANCE_ID}" & + LC_ALL=C.utf8 aws --region "${REGION}" ec2 get-console-output --instance-id "${INSTANCE_ID}" --output text > "${ARTIFACT_DIR}/${INSTANCE_ID}" & wait "$!" done diff --git a/ci-operator/step-registry/gather/aws-console/gather-aws-console-ref.yaml b/ci-operator/step-registry/gather/aws-console/gather-aws-console-ref.yaml index cfec849c94891..8187da1d1a4eb 100644 --- a/ci-operator/step-registry/gather/aws-console/gather-aws-console-ref.yaml +++ b/ci-operator/step-registry/gather/aws-console/gather-aws-console-ref.yaml @@ -3,7 +3,7 @@ ref: optional_on_success: true from_image: namespace: ocp - name: "4.5" + name: "4.14" tag: upi-installer grace_period: 10m commands: gather-aws-console-commands.sh