Releases: steebchen/kubectl
Releases · steebchen/kubectl
Patch release
Fix an issue around custom binaries
Support custom binary URLs
This adds support to add custom URLs to use as the k8s binary
What's Changed
New Contributors
Full Changelog: v2.0.0...v2.1.0
v2.0.0
v2.0.0 ✨
Introduces native GitHub Action inputs and the possibility to specify the kubectl version.
⭐ If you use this action, please consider starring this repo. Thanks! ⭐
What's new
Native Github Actions inputs
You can now use native GitHub Action inputs via with
for all options:
- name: verify deployment
uses: steebchen/kubectl@v2.0.0
with:
config: ${{ secrets.KUBE_CONFIG_DATA }}
command: rollout status deployment/my-app
Use a specific version of kubectl
Optionally set the specific kubectl version you need. It defaults to the latest version available.
- name: verify deployment
uses: steebchen/kubectl@v2.0.0
with:
config: ${{ secrets.KUBE_CONFIG_DATA }}
version: v1.15.0 # <-- use an older version
command: rollout status deployment/my-app
v1.1.0
1.0.1
Initial Release
Initial release for running kubectl using GitHub Actions.