kind-action icon indicating copy to clipboard operation
kind-action copied to clipboard

A GitHub Action for Kubernetes IN Docker - local clusters for testing Kubernetes

Results 15 kind-action issues
Sort by recently updated
recently updated
newest added

I have seen the cleanup jobs fails on our ci for multiple times in our self-hosted github runners ``` ERROR: failed to delete cluster "local": failed to delete nodes: command...

bug
help wanted

When a Kind deploy fails, then the GitHub action should fail too: ![image](https://user-images.githubusercontent.com/202474/123938023-06110580-d997-11eb-826e-604691411f2c.png) The deployment did not become ready, and the Kind cluster was not usable. The cross mark indicates...

bug
help wanted

Currently, we can use the kind action for installing it on Linux-based os, is there a plan to extend this to add support for other OS as well? Want something...

enhancement
help wanted

Currently we have KIND running in our Kubernetes CI, where KIND runs inside of a pod/container, which requires the following mounts with the node: ``` volumeMounts: - mountPath: /lib/modules name:...

https://kind.sigs.k8s.io/docs/user/rootless/#creating-a-kind-cluster-with-rootless-docker I have tried following in my workflow: ``` job: test: env: DOCKER_HOST: unix://${XDG_RUNTIME_DIR}/docker.sock steps: - name: Create kind v1.19.7 cluster uses: helm/[email protected] with: node_image: kindest/node:v1.19.7 ``` However that fails...

Hi team. In minikube, I can use `minikube mount :` to complete it. What's steps in kind-action? Shall we need input parameter to support? Any help will be appreciated.

I'm having trouble with this action on custom arc runners https://github.com/actions/actions-runner-controller Any help would be appreciated. [11_Post Run [email protected]](https://github.com/helm/kind-action/files/14484645/11_Post.Run.helm_kind-action%40v1.9.0.txt) [4_Run [email protected]](https://github.com/helm/kind-action/files/14484646/4_Run.helm_kind-action%40v1.9.0.txt)

question

Important note - This doesn't setup Docker on MacOS. To setup Docker, you either need to use the Docker Desktop GHA (https://github.com/docker/desktop-action), or you need to connect your MacOS runner...

size/M

Creating a cluster with the following configuration: ``` - name: Create kind cluster if: steps.list-changed.outputs.changed == 'true' uses: helm/kind-action@dda0770415bac9fc20092cacbc54aa298604d140 # v1.8.0 with: wait: 300s ``` Leads to the following log...