Skip to content

Instantly share code, notes, and snippets.

---
- type: replace
path: /releases/name=routing?
value:
name: routing
version: "0.154.0"
url: https://bosh.io/d/github.com/cloudfoundry-incubator/cf-routing-release?v=0.154.0
sha1: 6f15de5699cbbce8a49ac3a1a49185460ef93f95
- type: replace
@roninby
roninby / cert-manager-test.sh
Created February 6, 2023 04:39 — forked from jakexks/cert-manager-test.sh
Cert-manager selfsigned as cluster issuer
#!/usr/bin/env bash
set -ex
export TEST_CLUSTER_NAME=quick-test
export CERT_MANAGER_VERSION=v1.3.1
export KIND_IMAGE=kindest/node:v1.20.2
# Create test cluster
echo "Creating test cluster..."
kind create cluster --name="$TEST_CLUSTER_NAME" --image="$KIND_IMAGE"
until kubectl --timeout=120s wait --for=condition=Ready pods --all --namespace kube-system; do sleep 1; done