Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: prepare for v0.6.0 release #51

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules/
__tests__/runner/*
lib/
lib/
dist/
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: engineerd/setup-kind@v0.5.0
- uses: engineerd/setup-kind@v0.6.0
- name: Testing
run: |
kubectl cluster-info
Expand Down Expand Up @@ -48,12 +48,14 @@ Optional inputs:
- `image`: node Docker image to use for booting the cluster.
- `name`: cluster name (default `"kind"`)
- `wait`: wait for control plane node to be ready (default `"300s"`)
- `kubeconfig`: sets kubeconfig path instead of $KUBECONFIG or $HOME/.kube/config
- `kubeconfig`: sets kubeconfig path instead of
$KUBECONFIG or
$HOME/.kube/config
- `skipClusterCreation`: if `"true"`, the action will not create a cluster, just
acquire the tools
- `skipClusterDeletion`: if `"true"`, the action will not delete the cluster
- `skipClusterLogsExport`: if `"true"`, the action will not export the cluster logs

- `skipClusterLogsExport`: if `"true"`, the action will not export the cluster
logs

Example using optional inputs:

Expand All @@ -66,7 +68,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: engineerd/setup-kind@v0.5.0
- uses: engineerd/setup-kind@v0.6.0
with:
version: "v0.11.1"
- name: Testing
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": "setup-kind",
"version": "0.5.0",
"version": "0.6.0",
"private": true,
"description": "GitHub Action to setup KinD (Kubernetes in Docker)",
"main": "lib/main.js",
Expand Down