Add the redacted source file for demo purposes Reviewed-on: https://source.michaeldileo.org/michael_dileo/Keybard-Vagabond-Demo/pulls/1 Co-authored-by: Michael DiLeo <michael_dileo@proton.me> Co-committed-by: Michael DiLeo <michael_dileo@proton.me>
36 lines
742 B
YAML
36 lines
742 B
YAML
---
|
|
apiVersion: source.toolkit.fluxcd.io/v1
|
|
kind: HelmRepository
|
|
metadata:
|
|
name: podinfo
|
|
namespace: default
|
|
spec:
|
|
interval: 5m0s
|
|
url: https://stefanprodan.github.io/podinfo
|
|
---
|
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: podinfo
|
|
namespace: default
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
chart: podinfo
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: podinfo
|
|
namespace: default
|
|
interval: 1m
|
|
values:
|
|
ingress:
|
|
enabled: true
|
|
className: nginx
|
|
annotations: {} # Explicitly empty annotations
|
|
hosts:
|
|
- host: podinfo.keyboardvagabond.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls: [] # Explicitly empty TLS array |