Skip to content

Comment out CWAgent Operator for Application Signals E2E Java and Python test #177

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

Merged
merged 1 commit into from
May 22, 2024
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/application-signals-java-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,12 +191,12 @@ jobs:
echo "NEW_CW_AGENT_OPERATOR_IMAGE"=$(kubectl get pods -n amazon-cloudwatch -l app.kubernetes.io/name=amazon-cloudwatch-observability -o json | \
jq '.items[0].status.containerStatuses[0].image') >> $GITHUB_ENV

- name: Check if CW Agent Operator image has changed
run: |
if [ ${{ env.OLD_CW_AGENT_OPERATOR_IMAGE }} = ${{ env.NEW_CW_AGENT_OPERATOR_IMAGE }} ]; then
echo "Operator image did not change"
exit 1
fi
# - name: Check if CW Agent Operator image has changed
# run: |
# if [ ${{ env.OLD_CW_AGENT_OPERATOR_IMAGE }} = ${{ env.NEW_CW_AGENT_OPERATOR_IMAGE }} ]; then
# echo "Operator image did not change"
# exit 1
# fi

- name: Get the sample app endpoint
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/application-signals-python-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,12 @@ jobs:
echo "NEW_CW_AGENT_OPERATOR_IMAGE"=$(kubectl get pods -n amazon-cloudwatch -l app.kubernetes.io/name=amazon-cloudwatch-observability -o json | \
jq '.items[0].status.containerStatuses[0].image') >> $GITHUB_ENV

- name: Check if CW Agent Operator image has changed
run: |
if [ ${{ env.OLD_CW_AGENT_OPERATOR_IMAGE }} = ${{ env.NEW_CW_AGENT_OPERATOR_IMAGE }} ]; then
echo "Operator image did not change"
exit 1
fi
# - name: Check if CW Agent Operator image has changed
# run: |
# if [ ${{ env.OLD_CW_AGENT_OPERATOR_IMAGE }} = ${{ env.NEW_CW_AGENT_OPERATOR_IMAGE }} ]; then
# echo "Operator image did not change"
# exit 1
# fi

- name: Get the sample app endpoint
run: |
Expand Down
Loading