Skip to content

Commit 2a7bd18

Browse files
authored
Traefik ingress instead of nginx (#608)
* add traefik ingress, remove nginx * localK8s updates * remove doc file : * 3-vm set * reset install values for ansible
1 parent 555b1c3 commit 2a7bd18

10 files changed

Lines changed: 221 additions & 742 deletions
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env bash
2+
set -euo pipefail
3+
4+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
5+
KIND_CONFIG="${KIND_CONFIG:-${SCRIPT_DIR}/kind.yaml}"
6+
KIND_NAME="${KIND_NAME:-ping}"
7+
if kind get clusters | grep -qx "${KIND_NAME}"; then
8+
kind delete cluster --name "${KIND_NAME}"
9+
fi
10+
11+
kind create cluster --name "${KIND_NAME}" --config "${KIND_CONFIG}"

0 commit comments

Comments
 (0)