Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ishaansehgal99 committed Oct 10, 2023
1 parent 075e4c4 commit 05196d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/e2e-preset-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ jobs:
- name: Create Nodepool
run: |
NAME_SUFFIX=${{ matrix.image.name }}
TRUNCATED_NAME_SUFFIX=${NAME_SUFFIX: -12}
NAME_SUFFIX_WITHOUT_DASHES=${NAME_SUFFIX//-/} # Removing all '-' symbols
TRUNCATED_NAME_SUFFIX=${NAME_SUFFIX_WITHOUT_DASHES: -12}
az aks nodepool add \
--name $TRUNCATED_NAME_SUFFIX \
--cluster-name new_demo \
Expand Down

0 comments on commit 05196d0

Please sign in to comment.