78cf668cd7
Once started, the cluster can not be paused using kind or ctlptl command. 2 helpers are added to pause and resume docker containers running the cluster.
7 lines
191 B
Bash
Executable File
7 lines
191 B
Bash
Executable File
#!/bin/sh
|
|
set -o errexit
|
|
|
|
echo "Pausing docker containers running k8s cluster managed with kind"
|
|
|
|
docker pause $(docker ps --filter name=kind-* --filter status=running --format "{{.Names}}")
|