mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-01 03:16:31 +02:00
42 lines
2.1 KiB
Bash
Executable file
42 lines
2.1 KiB
Bash
Executable file
#!/bin/bash
|
|
# PRE-REQ: Install Helm : You should verify the content of this script before running.
|
|
# curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get | bash
|
|
# NOTE! This will create real resources on Google's cloud. Make sure you clean up any unused
|
|
# resources to avoid being billed. For reference, this tutorial cost me <10 cents for a couple of hours.
|
|
# NOTE! You must change the identity provider client secret setting, and service account setting!
|
|
# NOTE! If you are using gsuite, you should also set `authenticate.idp.serviceAccount`, see docs !
|
|
|
|
echo "=> [GCE] creating cluster"
|
|
gcloud container clusters create pomerium --region us-west2
|
|
|
|
echo "=> [GCE] get cluster credentials so we can use kubctl locally"
|
|
gcloud container clusters get-credentials pomerium --region us-west2
|
|
|
|
echo "=> add pomerium's helm repo"
|
|
helm repo add pomerium https://helm.pomerium.io
|
|
|
|
echo "=> update helm"
|
|
helm repo update
|
|
|
|
echo "=> install pomerium with helm"
|
|
echo "=> initiliaze a configmap setting from config.example.yaml"
|
|
kubectl create configmap config --from-file="config.yaml"="docs/configuration/examples/kubernetes/kubernetes-config.yaml"
|
|
|
|
helm install \
|
|
pomerium \
|
|
pomerium/pomerium \
|
|
--set service.type="NodePort" \
|
|
--set config.rootDomain="corp.beyondperimeter.com" \
|
|
--set config.existingConfig="config" \
|
|
--set config.sharedSecret=$(head -c32 /dev/urandom | base64) \
|
|
--set config.cookieSecret=$(head -c32 /dev/urandom | base64) \
|
|
--set ingress.secret.name="pomerium-tls" \
|
|
--set ingress.secret.cert=$(base64 -i "$HOME/.acme.sh/*.corp.beyondperimeter.com_ecc/fullchain.cer") \
|
|
--set ingress.secret.key=$(base64 -i "$HOME/.acme.sh/*.corp.beyondperimeter.com_ecc/*.corp.beyondperimeter.com.key") \
|
|
--set-string ingress.annotations."kubernetes\.io/ingress\.allow-http"=false \
|
|
--set authenticate.service.annotations."cloud\.google\.com/app-protocols"='\{"https":"HTTPS"\}' \
|
|
--set proxy.service.annotations."cloud\.google\.com/app-protocols"='\{"https":"HTTPS"\}'
|
|
|
|
# When done, clean up by deleting the cluster!
|
|
# helm del $(helm ls --all --short) --purge # deletes all your helm instances
|
|
# gcloud container clusters delete pomerium # deletes your cluster
|