Skip to content

Commit 2bc5766

Browse files
authored
Use public image for CW operator canary tests and expand the test to all regions. (#116)
This PR changed to use public image for CW operator in python EKS canary tests and expand the test to all regions. Example workflow run: https://github.com/aws-observability/aws-otel-python-instrumentation/actions/runs/8302598860 By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
1 parent c34f139 commit 2bc5766

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/appsignals-python-e2e-eks-canary-test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
aws-region: ['us-west-1','us-east-1','us-east-2']
28+
aws-region: ['af-south-1','ap-east-1','ap-northeast-1','ap-northeast-2','ap-northeast-3','ap-south-1','ap-south-2','ap-southeast-1',
29+
'ap-southeast-2','ap-southeast-3','ap-southeast-4','ca-central-1','eu-central-1','eu-central-2','eu-north-1',
30+
'eu-south-1','eu-south-2','eu-west-1','eu-west-2','eu-west-3','il-central-1','me-central-1','me-south-1', 'sa-east-1',
31+
'us-east-1','us-east-2', 'us-west-1', 'us-west-2']
2932
uses: ./.github/workflows/appsignals-python-e2e-eks-test.yml
3033
secrets: inherit
3134
with:

.github/workflows/appsignals-python-e2e-eks-test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,7 @@ jobs:
122122
run: |
123123
sed -i 's/clusterName:/clusterName: ${{ inputs.test-cluster-name }}/g' values.yaml
124124
sed -i 's/region:/region: ${{ inputs.aws-region }}/g' values.yaml
125-
sed -i 's/repository: cloudwatch-agent-operator/repository: cwagent-operator-pre-release/g' values.yaml
126-
sed -i 's/tag: 1.0.2/tag: latest/g' values.yaml
127-
sed -i '0,/public: public.ecr.aws\/cloudwatch-agent/s//public: ${{ secrets.TEST_CW_AGENT_REPO }}/' values.yaml
125+
sed -i 's/tag: 1.0.2/tag: 1.1.0/g' values.yaml
128126
if [ ${{ inputs.appsignals-adot-image }} != "" ]; then
129127
echo "Using provided AppSignals ADOT image"
130128
sed -i 's~repository: ghcr.io/open-telemetry/opentelemetry-operator/autoinstrumentation-python~repository: ${{ inputs.appsignals-adot-image }}~g' values.yaml

0 commit comments

Comments
 (0)