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 13fb949 commit a158b45Copy full SHA for a158b45
.github/workflows/cd_prod.yml
@@ -23,7 +23,12 @@ jobs:
23
- name: Set up kubectl
24
uses: azure/setup-kubectl@v1
25
with:
26
- kubeconfig: ${{ secrets.KUBE_POSTGRES_CONFIG }}
+ version: 'latest'
27
+
28
+ - name: Set KUBECONFIG environment variable
29
+ run: echo "$KUBE_POSTGRES_CONFIG" > $HOME/.kube/config
30
+ env:
31
+ KUBE_POSTGRES_CONFIG: ${{ secrets.KUBE_POSTGRES_CONFIG }}
32
33
# Proxy the database (use kubectl port-forward or other mechanisms)
34
- name: Proxy Database using Kubernetes
0 commit comments