We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
kubeconfig_path
kubeconfig_raw
1 parent 33b4479 commit 6a82bb6Copy full SHA for 6a82bb6
.github/workflows/main.yml
@@ -42,11 +42,10 @@ jobs:
42
- name: 'Run TF unit tests (${{ matrix.runner }})'
43
if: startsWith(matrix.runner, 'ubuntu-') == false
44
env:
45
- # provider requires KUBECONFIG_PATH to be set
46
- # but we don't have or need a kubeconfig
47
- # to run unit tests on windows and mac
48
- KUBECONFIG_PATH: ""
49
- run: go test -v ./kustomize
+ KUBECONFIG_PATH: ./emptykubeconfig
+ run: |
+ kubectl config view > $KUBECONFIG_PATH
+ go test -v ./kustomize
50
51
compile_provider:
52
runs-on: ubuntu-latest
0 commit comments