Skip to content

Commit

Permalink
release v0.11.0
Browse files Browse the repository at this point in the history
Signed-off-by: Yoichi Kawasaki <[email protected]>
  • Loading branch information
yokawasa committed Feb 24, 2024
1 parent 2e3262f commit 953eee8
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
22 changes: 19 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Specific versions for the commands can be setup by adding inputs parameters like
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: yokawasa/action-setup-kube-tools@v0.10.0
- uses: yokawasa/action-setup-kube-tools@v0.11.0
with:
kubectl: '1.17.1'
kustomize: '3.7.0'
Expand Down Expand Up @@ -82,7 +82,7 @@ Default versions for the commands will be setup if you don't give any inputs lik
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: yokawasa/action-setup-kube-tools@v0.10.0
- uses: yokawasa/action-setup-kube-tools@v0.11.0
- run: |
kubectl version --client
kustomize version
Expand All @@ -103,7 +103,7 @@ By specifying setup-tools you can choose which tools the action setup. Supported
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: yokawasa/action-setup-kube-tools@v0.10.0
- uses: yokawasa/action-setup-kube-tools@v0.11.0
with:
setup-tools: |
kubectl
Expand All @@ -121,6 +121,22 @@ By specifying setup-tools you can choose which tools the action setup. Supported
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`.

```yaml
test:
steps:
- uses: actions/checkout@v4
- uses: yokawasa/[email protected]
with:
arch-type: 'arm64'
setup-tools: |
kubectl
kubectl: '1.25'
- run: |
kubectl version --client
```


## Developing the action

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "action-setup-kube-tools",
"version": "0.10.0",
"version": "0.11.0",
"private": true,
"description": "Github Action that install Kubernetes tools (kubectl, kustomize, helm, kubeconform, conftest, yq, etc.) and cache them on the runner",
"main": "lib/main.js",
Expand Down

0 comments on commit 953eee8

Please sign in to comment.