Files
penpot-helm/scripts/cluster_create.sh
Joel Dollarhide 5cb719cf91 feat: allow ldap password via secret
- 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
2025-02-10 18:28:47 +01:00

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