kind-action
kind-action copied to clipboard
feat: options to configure local registry
Fixes #76
Description
Add options to configure an insecure local registry. An example workflow file can be:
name: Create Cluster with Registry
on: pull_request
jobs:
create-cluster-with-registry:
runs-on: ubuntu-latest
steps:
- name: Kubernetes KinD Cluster
uses: helm/kind-action@v1
with:
registry: true
registry_name: my-registry
registry_port: 5001
registry_enable_delete: true
Does this look alright?
Credits: Thanks https://github.com/container-tools/kind-action for providing the inspiration.