kubernetes-sandbox

Prerequisites

Set up

Create cluster:

k8s_version=v1.29.1
kind create cluster --name "sandbox-$k8s_version" --config=cluster.yaml --image="kindest/node:$k8s_version"

Configure cluster:

helmfile init # Install diff, secrets, s3, helm-git plugin
helmfile apply

Example

kubectl apply -f manifests/

Tips

curl pod:

kubectl run --rm -it --image=curlimages/curl client -- sh
istioctl dashboard kiali

References