Skip to content

Releases: steebchen/kubectl

Patch release

08 Dec 09:31
7c4c70d
Compare
Choose a tag to compare

Fix an issue around custom binaries

Support custom binary URLs

28 Nov 14:46
f9c5b73
Compare
Choose a tag to compare

This adds support to add custom URLs to use as the k8s binary

What's Changed

  • Add support for a binaries_url parameter by @rajbos in #22

New Contributors

Full Changelog: v2.0.0...v2.1.0

v2.0.0

18 Jun 16:41
bd911c0
Compare
Choose a tag to compare

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

01 Apr 08:23
5be8a58
Compare
Choose a tag to compare
chore(GitHub): create action.yml (#6)

1.0.1

25 Dec 17:24
Compare
Choose a tag to compare

This release adds support for multiple kubectl versions thanks to @Hsn723 via #4.

Initial Release

29 May 17:23
Compare
Choose a tag to compare

Initial release for running kubectl using GitHub Actions.