Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Loading