mirror of
https://github.com/zoriya/cish.git
synced 2025-12-06 07:16:16 +00:00
16 lines
236 B
Bash
16 lines
236 B
Bash
#!/usr/bin/env bash
|
|
|
|
cish add helm kind
|
|
helm lint ./chart
|
|
|
|
helm dependency update ./chart
|
|
|
|
kind create cluster
|
|
|
|
helm install test-release ./chart --dry-run --debug
|
|
helm install test-release ./chart
|
|
|
|
kubectl get all
|
|
|
|
kind delete cluster
|