Go to file
Mathis fdf267920a Merge pull request 'Change monitoring solution' (#89) from feat/grafana-labs into main
Reviewed-on: #89
2024-04-27 14:56:35 +00:00
apps Add dev-container 2024-04-25 19:55:49 +00:00
infra Change monitoring solution 2024-04-27 14:53:40 +00:00
.gitignore Add sops and gitignore 2023-11-28 21:06:09 +00:00
.sops.yaml Add sops and gitignore 2023-11-28 21:06:09 +00:00
Makefile Add dev-container 2024-04-25 19:55:49 +00:00
README.md Update README.md 2023-12-20 22:22:24 +00:00
renovate.json Automerge digest 2024-04-01 19:22:04 +00:00

README.md

K3s Configs

Helm configs and Kubernetes manifests for my dev cluster managed by Kustomize.

Structure

Requirements

Usage

Generate age key

mkdir -p $HOME/.config/sops/age
age-keygen -o $HOME/.config/sops/age/keys.txt

Create .sops.yaml file in the repo root and copy the age public key

.sops.yaml

creation_rules:
  - unencrypted_regex: "^(apiVersion|metadata|kind|type)$"
    age: "<age public key>"

Create secret.yaml

apiVersion: v1
kind: Secret
metadata:
  name: mysecret
type: Opaque
data:
  username: YWRtaW4=
  password: MWYyZDFlMmU2N2Rm

Encrypt the secret using sops

sops -e secret.yaml > secret.enc.yaml

Create secret-generator.yaml

apiVersion: viaduct.ai/v1
kind: ksops
metadata:
  name: gitea-secret-generator
  annotations:
    config.kubernetes.io/function: |
        exec:
          path: ksops        
files:
- ./secret.enc.yaml

Use secret generator in kustomization.yaml

generators:
  - ./secret-generator.yaml

Deploy application

kustomize build --enable-helm --enable-alpha-plugins --enable-exec . | k apply -f -