We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3f3357 commit e445d74Copy full SHA for e445d74
.github/workflows/deploy_helmfile.yaml
@@ -201,6 +201,14 @@ jobs:
201
- name: setup kubeconfig
202
run: aws eks update-kubeconfig --name ${{ inputs.eksClusterName }} $OPTIONAL_PARAMS
203
204
+ - name: wait until Tailscale is ready
205
+ if: inputs.enableVpn == 'true'
206
+ run: |
207
+ for i in {1..20}; do
208
+ kubectl cluster-info --request-timeout 3 && break
209
+ echo "Waiting for Tailscale to be ready..."
210
+ done
211
+
212
- name: helmfile ${{ inputs.helmfileCommand }}
213
run: |
214
export $(echo ${{ inputs.envVariables }})
0 commit comments