gitops: add podinfo deployment

This commit is contained in:
Jan Novak
2025-12-30 23:33:27 +01:00
parent d275ec09a4
commit 817a3c8335
3 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
---
apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
name: podinfo
namespace: default
spec:
chart:
spec:
chart: podinfo
reconcileStrategy: ChartVersion
sourceRef:
kind: HelmRepository
name: podinfo
version: '>5.0.0'
interval: 1m0s
releaseName: podinfo
values:
replicaCount: 2
resources:
limits:
memory: 256Mi
requests:
cpu: 100m
memory: 64Mi

View File

@@ -0,0 +1,9 @@
---
apiVersion: source.toolkit.fluxcd.io/v1
kind: HelmRepository
metadata:
name: podinfo
namespace: default
spec:
interval: 10m0s
url: https://stefanprodan.github.io/podinfo

View File

@@ -0,0 +1,7 @@
replicaCount: 2
resources:
limits:
memory: 256Mi
requests:
cpu: 100m
memory: 64Mi