You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,22 +13,23 @@ jobs:
13
13
runs-on: ubuntu-latest
14
14
steps:
15
15
- uses: actions/checkout@master
16
-
- uses: engineerd/setup-kind@v0.2.0
16
+
- uses: engineerd/setup-kind@v0.3.0
17
17
- name: Testing
18
18
run: |
19
19
kubectl cluster-info
20
20
kubectl get pods -n kube-system
21
21
```
22
22
23
23
> Note: KUBECONFIG is automatically merged after cluster creation, so starting with version 0.6 of Kind, you do not need to manually export the `KUBECONFIG` environment variable. See [this document for a detailed migration guide][kind-kubeconfig]
24
-
> Note: GitHub Actions workers come pre-configured with `kubectl` version 1.16.3.
24
+
25
+
> Note: GitHub Actions workers come pre-configured with `kubectl`.
25
26
26
27
The following arguments can be configured on the job using the `with` keyword (see example above).
27
28
Currently, possible inputs are all the flags for `kind cluster create`, with the additional version, which sets the Kind version to downloadm and `skipClusterCreation`, which when present, skips creating the cluster (the Kind tools is configured in the path).
28
29
29
30
Optional inputs:
30
31
31
-
-`version`: version of Kind to use (default `"v0.6.1"`)
32
+
-`version`: version of Kind to use (default `"v0.7.0"`)
32
33
-`config`: path (relative to the root of the repository) to a kind config file. If omitted, a default 1-node cluster will be created
33
34
-`image`: node Docker image to use for booting the cluster.
0 commit comments