https://github.com/multani/action-setup-kustomize
A GitHub Action to install Kustomize
https://github.com/multani/action-setup-kustomize
action
Last synced: 13 days ago
JSON representation
A GitHub Action to install Kustomize
- Host: GitHub
- URL: https://github.com/multani/action-setup-kustomize
- Owner: multani
- License: mit
- Created: 2022-07-25T07:55:22.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-25T09:57:36.000Z (almost 4 years ago)
- Last Synced: 2025-01-23T02:24:45.623Z (over 1 year ago)
- Topics: action
- Language: Shell
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GitHub Action to install Kustomize
This GitHub Action installs a specific version of the [`kustomize` command line
tool](https://kustomize.io/):
```yaml
- name: Setup Kustomize
uses: multani/action-setup-kustomize@v1
with:
version: 4.0.2
- run: kustomize version
```
## Usage
```yaml
- name: Install Kustomize
uses: multani/action-setup-kustomize@v1
```
Then, simply run the `kustomize` command line tool.
By default, it will install one of the latest version.
You can also request a specific version of Kustomize:
```yaml
- name: Install Kustomize
uses: multani/action-setup-kustomize@v1
with:
version: 4.5.4
```
## Inputs
* `version`: the version of Kustomize to install. The version should be an
available version from the [release
page](https://github.com/kubernetes-sigs/kustomize/releases).
## Outputs
None.
## Acknowledgements
The code of this action heavily borrows from the [asdf installation script for
Kustomize by Banno](https://github.com/Banno/asdf-kustomize).
## License
MIT