-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A0-2967: Update kustomize to 4.4.1 (#1331)
# Description Bumps kustomize version from `3.8.6` to `4.4.1` to match the version used in ArgoCD. Bumps `setup-kustomize` action version from `v1` to `v2` (that one comes from Dependabot PR). According to the v2 release notes, there are no breaking changes. ## Type of change Action `setup-kustomize` is used in deployment workflows for devnet, testnet and mainnet. ## Tested A temporary workflow has been created where apps repository was checked out and `kustomize build .` was executed in one of the app's overlay to check if YAML, with kubernetes resources, gets properly generated. ```` jobs: main: name: Test kustomize runs-on: ubuntu-20.04 steps: - name: GIT | Checkout argocd apps repo uses: actions/checkout@v3 with: ref: main ... - name: Init kustomize uses: imranismail/setup-kustomize@v2 with: kustomize-version: "4.4.1" - name: Test kustomize run: | cd some-path-here/overlays/devnet/eu-central-1/ kustomize build . ````
- Loading branch information
Showing
4 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -183,9 +183,9 @@ jobs: | |
ref: main | ||
|
||
- name: KUSTOMIZE | Init kustomize | ||
uses: imranismail/setup-kustomize@v1 | ||
uses: imranismail/setup-kustomize@v2 | ||
with: | ||
kustomize-version: '3.8.6' | ||
kustomize-version: '4.4.1' | ||
|
||
- name: KUBECTL | Setup kubectl | ||
uses: azure/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,9 +52,9 @@ jobs: | |
path: "${{ secrets.REPO_ARGOCD_APPS_NAME }}" | ||
|
||
- name: Init kustomize | ||
uses: imranismail/setup-kustomize@v1 | ||
uses: imranismail/setup-kustomize@v2 | ||
with: | ||
kustomize-version: "3.8.6" | ||
kustomize-version: "4.4.1" | ||
|
||
- name: Setup kubectl | ||
uses: azure/[email protected] | ||
|