Home

Awesome

action-setup-kube-tools Test

action-setup-kube-tools

A GitHub Action that setup Kubernetes tools (kubectl, kustomize, helm, kubeconform, conftest, yq, rancher, tilt, skaffold, kube-score) and cache them on the runner. It is like a typescript version of stefanprodan/kube-tools with no command input param, but as compared with it, it's very fast as it installs the tools asynchronously.

Usage

Inputs

ParameterRequiredDefault ValueDescription
fail-fastfalsetruethe action immediately fails when it fails to download (ie. due to a bad version)
arch-typefalseamd64The processor architecture type of the tool binary to setup. Supported types are only amd64 and arm64. If a type other than the supported Types is specified, it will be treated as amd64.
setup-toolsfalse""List of tool name to setup. By default, the action download and setup all supported Kubernetes tools. By specifying setup-tools you can choose which tools the action setup. Supported separator is return in multi-line string. Supported tools are kubectl, kustomize, helm, helmv3, kubeval, conftest, yq, rancher, tilt, skaffold, kube-score
kubectlfalse1.24.10kubectl version. kubectl vesion can be found here
kustomizefalse5.0.0kustomize version. kustomize vesion can be found here
helmfalse3.11.1helm version. helm vesion can be found here
kubevalfalse0.16.1kubeval version (must be 0.16.1+). kubeval vesion can be found here.<br> NOTE: this parameter is deprecating as kubeval is no longer maintained. A good replacement is kubeconform. See also this for more details.
kubeconformfalse0.5.0kubeconform version. kubeconform vesion can be found here
conftestfalse0.39.0conftest version. conftest vesion can be found here
yqfalse4.30.7yq version. yq vesion can be found here
rancherfalse2.7.0Rancher CLI version. Rancher CLI vesion can be found here
tiltfalse0.31.2Tilt version. Tilt vesion can be found here
skaffoldfalse2.1.0Skaffold version. Skaffold vesion can be found here
kube-scorefalse1.16.1kube-score version. kube-score vesion can be found here

Outputs

ParameterDescription
kubectl-pathkubectl command path if the action setup the tool, otherwise empty string
kustomize-pathkustomize command path if the action setup the tool, otherwise empty string
helm-pathhelm command path if the action setup the tool, otherwise empty string
kubeval-pathkubeval command path if the action setup the tool, otherwise empty string
kubeconform-pathkubeconform command path if the action setup the tool, otherwise empty string
conftest-pathconftest command path if the action setup the tool, otherwise empty string
yq-pathyq command path if the action setup the tool, otherwise empty string
rancher-pathrancher command path if the action setup the tool, otherwise empty string
tilt-pathrancher command path if the action setup the tool, otherwise empty string
skaffold-pathrancher command path if the action setup the tool, otherwise empty string
kube-score-path:rancher command path if the action setup the tool, otherwise empty string

Sample Workflow

Specific versions for the commands can be setup by adding inputs parameters like this:

  test: 
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: yokawasa/action-setup-kube-tools@v0.11.1
      with:
        kubectl: '1.25'
        kustomize: '5.0.0'
        helm: '3.11.1'
        kubeconform: '0.5.0'
        conftest: '0.39.0'
        rancher: '2.7.0'
        tilt: '0.31.2'
        skaffold: '2.1.0'
        kube-score: '1.16.1'
    - run: |
        kubectl version --client
        kustomize version
        helm version
        kubeconform -v
        conftest --version
        yq --version
        rancher --version
        tilt version
        skaffold version
        kube-score version

Default versions for the commands will be setup if you don't give any inputs like this:

  test: 
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: yokawasa/action-setup-kube-tools@v0.11.1
    - run: |
        kubectl version --client
        kustomize version
        helm version
        kubeconform -v
        conftest --version
        yq --version
        rancher --version
        tilt version
        skaffold version
        kube-score version

By specifying setup-tools you can choose which tools the action setup. Supported separator is return in multi-line string like this

  test: 
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: yokawasa/action-setup-kube-tools@v0.11.1
      with:
        setup-tools: |
          kubectl
          helm
          kustomize
          skaffold
        kubectl: '1.25'
        helm: '3.11.1'
        kustomize: '5.0.0'
        skaffold: '2.1.0'
    - run: |
        kubectl version --client
        kustomize version
        helm version
        skaffold version

By specifying arch-type you can choose the processor architecture type of the tool binary to setup. Supported types are only amd64(default) and arm64.

  test: 
    steps:
    - uses: actions/checkout@v4
    - uses: yokawasa/action-setup-kube-tools@v0.11.1
      with:
        arch-type: 'arm64'
        setup-tools: |
          kubectl
          helm
          kustomize
          skaffold
        kubectl: '1.25'
        helm: '3.11.1'
        kustomize: '5.0.0'
        skaffold: '2.1.0'
    - run: |
        kubectl version --client
        kustomize version
        helm version
        skaffold version

Developing the action

Install the dependencies

npm install

Build the typescript and package it for distribution by running ncc

npm run build && npm run format && npm run lint && npm run pack

Finally push the results

git add dist
git commit -a -m "prod dependencies"
git push origin releases/v0.11.1

References

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/yokawasa/action-setup-kube-tools

Changelog

Please see the list of releases for information on changes between releases.