25 lines
509 B
YAML
25 lines
509 B
YAML
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: podinfo
|
|
namespace: podinfo
|
|
spec:
|
|
interval: 10m
|
|
chart:
|
|
spec:
|
|
chart: podinfo
|
|
version: ">=6.0.0"
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: podinfo
|
|
namespace: podinfo
|
|
values:
|
|
replicaCount: 1
|
|
ingress:
|
|
enabled: true
|
|
className: traefik
|
|
hosts:
|
|
- host: podinfo.boglabob.com
|
|
paths:
|
|
- path: /
|
|
pathType: ImplementationSpecific
|