Merge pull request #519 from 3dwardch3ng/infra/sealed-secrets

test sealed-secrets decryption
This commit is contained in:
2024-07-17 00:42:23 +10:00
committed by GitHub
6 changed files with 6 additions and 24 deletions

View File

@@ -1,8 +0,0 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
helmCharts:
- name: sealed-secrets
repo: https://bitnami-labs.github.io/sealed-secrets
version: 2.16.0
releaseName: sealed-secrets
valuesFile: values.yaml

View File

@@ -1,12 +0,0 @@
{
"appName": "sealed-secrets",
"userGivenName": "sealed-secrets",
"namespace": "sealed-secrets",
"destNamespace": "kube-system",
"destServer": "https://kubernetes.default.svc",
"srcPath": "resources/sealed-secrets/env/k3s-cluster",
"srcRepoURL": "https://github.com/3dwardch3ng/home-cluster-ops.git",
"srcTargetRevision": "",
"labels": null,
"annotations": null
}

View File

@@ -1,4 +0,0 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ../../base

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