Merge branch 'refs/heads/main' into infra/postgresql

This commit is contained in:
2024-07-17 01:07:38 +10:00
31 changed files with 236 additions and 15 deletions

View File

@@ -0,0 +1,6 @@
#!/bin/bash
set -e
helm repo add sealed-secrets https://bitnami-labs.github.io/sealed-secrets
helm repo update
helm install sealed-secrets -n kube-system --set-string fullnameOverride=sealed-secrets-controller sealed-secrets/sealed-secrets -f sealed-secrets-values.yaml

View File

@@ -0,0 +1,7 @@
#!/usr/bin/bash
set -e
secretName=$1
filePath=$2
cat $filePath | kubeseal --format yaml --scope cluster-wide | tee $filePath

View File

@@ -0,0 +1,3 @@
service:
type: NodePort
nodePort: 31008