Skip to content

Update Kind to v0.6.1

Pre-release
Pre-release

Choose a tag to compare

@radu-matei radu-matei released this 16 Dec 19:56

This release updates Kind to the latest version, v0.6.1.

The biggest update is that you no longer have to manually export the KUBECOFIG environment variable after creating the cluster, since the context is automatically merged.

name: "Create cluster using Kind"
on: [pull_request, push]

jobs:
  kind:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
    - uses: engineerd/[email protected]
    - name: Testing
      run: |
        kubectl cluster-info
        kubectl get pods -n kube-system

Big shoutout to the Kind team!