Sebastian Mark
94f500dfdc
- change chart reference kind from HelmChart to OCIRepository
- ensure compatibility with OCI-based deployments
- update documentation to reflect the new chart reference type
🤖
26 lines
466 B
YAML
26 lines
466 B
YAML
---
|
|
apiVersion: source.toolkit.fluxcd.io/v1beta2
|
|
kind: OCIRepository
|
|
metadata:
|
|
name: podinfo
|
|
namespace: flux2
|
|
spec:
|
|
interval: 5ms
|
|
url: oci://ghcr.io/stefanprodan/charts/podinfo
|
|
ref:
|
|
tag: 6.0.0
|
|
---
|
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: podinfo
|
|
namespace: flux2
|
|
spec:
|
|
interval: 10m
|
|
targetNamespace: podinfo
|
|
chartRef:
|
|
kind: OCIRepository
|
|
name: podinfo
|
|
namespace: flux2
|
|
values:
|
|
replicaCount: 2
|