Skip to content

Commit fe04175

Browse files
authored
fix: Add back eksctl to deploy_helmfile workflow [internal] (#199)
1 parent 8bd0e01 commit fe04175

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/deploy_helmfile.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ on:
7171
enableVpn:
7272
description: Enable VPN connection
7373
required: false
74-
default: true
74+
default: 'true'
7575
type: string
7676
runner:
7777
description: Runner to use
@@ -167,6 +167,8 @@ jobs:
167167
# NOTE: This will go away with terraform
168168
- name: setup dependencies
169169
env:
170+
# renovate: datasource=github-releases depName=eksctl-io/eksctl
171+
EKSCTL_VERSION: v0.210.0
170172
# renovate: datasource=github-releases depName=helmfile/helmfile
171173
HELMFILE_VERSION: ${{ inputs.helmfileVersion }}
172174
# renovate: datasource=github-releases depName=databus23/helm-diff
@@ -181,11 +183,13 @@ jobs:
181183
fi
182184
183185
curl -fsSL -o helmfile.tar.gz https://github.com/helmfile/helmfile/releases/download/${{ env.HELMFILE_VERSION }}/helmfile_${HELMFILE_VERSION_WITHOUT_PREFIX}_linux_${ARCH}.tar.gz
186+
curl -fsSL -o eksctl.tar.gz https://github.com/eksctl-io/eksctl/releases/download/${{ env.EKSCTL_VERSION }}/eksctl_Linux_amd64.tar.gz
184187
185188
helm plugin install https://github.com/databus23/helm-diff --version ${{ env.HELM_DIFF_PLUGIN_VERSION }}
186189
187190
mkdir -p $HOME/.local/bin
188191
192+
tar -C $HOME/.local/bin/ -xf ./eksctl.tar.gz
189193
tar -C $HOME/.local/bin/ -xf ./helmfile.tar.gz
190194
191195
chmod +x $HOME/.local/bin/*

0 commit comments

Comments
 (0)