Skip to content
Compare
Choose a tag to compare
@steebchen steebchen released this 18 Jun 16:41
· 2 commits to master since this release
bd911c0

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/[email protected]
  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/[email protected]
  with:
    config: ${{ secrets.KUBE_CONFIG_DATA }}
    version: v1.15.0 # <-- use an older version
    command: rollout status deployment/my-app