File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ jobs:
100
100
id : create_service_account
101
101
uses : ./.github/workflows/actions/execute_and_retry
102
102
with :
103
- command : " ektl create iamserviceaccount \
103
+ command : " eksctl create iamserviceaccount \
104
104
--name service-account-${{ env.TESTING_ID }} \
105
105
--namespace ${{ env.SAMPLE_APP_NAMESPACE }} \
106
106
--cluster ${{ inputs.test-cluster-name }} \
@@ -154,12 +154,12 @@ jobs:
154
154
# after installing App Signals. Attempts to connect will be made for up to 10 minutes
155
155
if [ $deployment_failed -eq 0 ]; then
156
156
. ${{ env.TEST_RESOURCES_FOLDER }}/.github/workflows/util/execute_and_retry.sh
157
- execute_and_retry 3 \
158
- "${{ env.TEST_RESOURCES_FOLDER }}/enablement -script/enable-app-signals.sh \
157
+ execute_and_retry 2 \
158
+ "${{ env.TEST_RESOURCES_FOLDER }}/enablent -script/enable-app-signals.sh \
159
159
${{ inputs.test-cluster-name }} \
160
160
${{ inputs.aws-region }} \
161
161
${{ env.SAMPLE_APP_NAMESPACE }}" \
162
- 60 \
162
+ 5 \
163
163
"${{ env.TEST_RESOURCES_FOLDER }}/enablement-script/clean-app-signals.sh \
164
164
${{ inputs.test-cluster-name }} \
165
165
${{ inputs.aws-region }} \
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ execute_and_retry () {
29
29
break
30
30
fi
31
31
32
- if (( $execute_retry_counter == $max_execute_retry )) ; then
32
+ if (( $execute_retry_counter == $max_execute_retry )) ; then
33
33
echo " Max retry reached, command failed to execute properly. Exiting execute_and_retry.sh script"
34
34
exit 1
35
35
fi
You can’t perform that action at this time.
0 commit comments