We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I configure a context and credentials to use with this plugin?
To elaborate a bit more, I'm currently doing the below but wondering if there's any more clean way.
mkdir /home/runner/.kube echo "${{ secrets.KUBECONFIG }}" > /home/runner/.kube/config
The text was updated successfully, but these errors were encountered:
This action does not configure kubeconfig. Set it yourself as you wrote.
Sorry, something went wrong.
Since this is something most users of this plugin would have to do I think it makes sense to support it.
For the Helm 3 Github Action it's supported by doing the following
- name: Deploy uses: WyriHaximus/github-action-helm3@v2 with: exec: helm upgrade APP_NAME ./.helm/app/ --install --wait --atomic --namespace=APP_NAMESPACE --set=app.name=APP_NAME --values=./.helm/app/values.yaml kubeconfig: '${{ secrets.KUBECONFIG }}'
Would you be interested in a pull request implementing something like the above?
No branches or pull requests
How do I configure a context and credentials to use with this plugin?
To elaborate a bit more, I'm currently doing the below but wondering if there's any more clean way.
The text was updated successfully, but these errors were encountered: