We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2400661 commit 5f6e8ffCopy full SHA for 5f6e8ff
1 file changed
.github/workflows/deploy.yml
@@ -37,7 +37,21 @@ jobs:
37
run: |
38
kubectl rollout status deployment/kong -n kong --timeout=180s
39
40
+ configure-kong:
41
+ runs-on: ubuntu-latest
42
+ needs: deploy-kong
43
+ steps:
44
+ - name: Checkout Repo
45
+ uses: actions/checkout@v3
46
+
47
+ - name: Set Kubeconfig as Environment Variable
48
+ run: |
49
+ mkdir -p $HOME/.kube
50
+ printf "%s" "${{ secrets.KUBE_CONFIG }}" | base64 --decode > $HOME/.kube/config
51
+ export KUBECONFIG=$HOME/.kube/config
52
+ chmod 600 $HOME/.kube/config
53
+ echo "KUBECONFIG set."
54
55
- name: Apply Kong Plugin and Ingress Resources
56
57
kubectl apply -f k8s/
-
0 commit comments