mirror of
https://github.com/penpot/penpot-helm.git
synced 2026-01-25 08:31:11 +00:00
- Ensure penpot namespace is created in cluster created by kind - Allow setting ldap bind password using the existing secret flow - Allow setting adhoc environment variables outside the format provided via the helm chart - Fix issue where the default bindDN states it is an invalid format
13 lines
503 B
Bash
Executable File
13 lines
503 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
# Create a kind cluster
|
|
kind create cluster --name penpot-cluster --config devel/kind.config.yml
|
|
|
|
# Create a namespace for Penpot
|
|
kubectl apply -f devel/penpot-namespace.yml --context=kind-penpot-cluster
|
|
kubectl config set-context penpot --namespace=penpot --cluster=kind-penpot-cluster --user=kind-penpot-cluster
|
|
kubectl config use-context penpot
|
|
|
|
# Setup ingress
|
|
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/kind/deploy.yaml
|