Update CloudNativePG Helm Chart

This commit is contained in:
Daniel Cosme
2026-04-30 13:24:15 -04:00
parent f542231791
commit 5c9a7af66f
5 changed files with 13 additions and 12 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ metadata:
name: linking name: linking
namespace: linkding namespace: linkding
resources: resources:
- namespace.yaml
- srv.yaml - srv.yaml
- pvc.yaml - pvc.yaml
- deployment.yaml - deployment.yaml
- namespace.yaml
@@ -6,12 +6,13 @@ metadata:
spec: spec:
chart: chart:
spec: spec:
chart: cnpg/cloudnative-pg chart: cloudnative-pg
interval: 12h0m0s interval: 12h0m0s
sourceRef: sourceRef:
kind: HelmRepository kind: HelmRepository
name: cnpg name: cnpg
namespace: cnpg-system namespace: cnpg-system
version: 1.29.0
install: install:
crds: Create crds: Create
interval: 30m0s interval: 30m0s
@@ -4,16 +4,16 @@ metadata:
name: truenas-csi name: truenas-csi
namespace: truenas-csi namespace: truenas-csi
resources: resources:
- namespace.yaml
- controller-cluster-role.yaml
- controller-binding.yaml
- node-service-account.yaml - node-service-account.yaml
- node-cluster-role.yaml - node-cluster-role.yaml
- node-binding.yaml - node-binding.yaml
- nfs-storage-class.yaml
- iscsi-storage-class.yaml
- namespace.yaml
- controller-deployment.yaml
- controller-service-account.yaml
- controller-cluster-role.yaml
- controller-binding.yaml
- node-deamonset.yaml - node-deamonset.yaml
- CSIDriver.yaml - CSIDriver.yaml
- controller-deployment.yaml
- controller-service-account.yaml
- config.yaml - config.yaml
- nfs-storage-class.yaml
- iscsi-storage-class.yaml
+2 -2
View File
@@ -42,8 +42,8 @@ func HelmRelease() helm.HelmRelease {
Interval: durMin(30), Interval: durMin(30),
Chart: &helm.HelmChartTemplate{ Chart: &helm.HelmChartTemplate{
Spec: helm.HelmChartTemplateSpec{ Spec: helm.HelmChartTemplateSpec{
Chart: root.HELM_CLOUD_NATIVE_PG_CHART, Chart: root.HELM_CLOUD_NATIVE_PG_CHART,
// Version: root.HELM_CLOUD_NATIVE_PG_CHART_VERSION, Version: root.HELM_CLOUD_NATIVE_PG_CHART_VERSION,
Interval: &interval, Interval: &interval,
SourceRef: helm.CrossNamespaceObjectReference{ SourceRef: helm.CrossNamespaceObjectReference{
Kind: flux.MetaHelmRepository.Kind, Kind: flux.MetaHelmRepository.Kind,
+1 -1
View File
@@ -32,7 +32,7 @@ const (
HELM_LONGHORN_CHART = "longhorn" HELM_LONGHORN_CHART = "longhorn"
HELM_LONGHORN_CHART_VERSION = "1.11.1" HELM_LONGHORN_CHART_VERSION = "1.11.1"
HELM_CLOUD_NATIVE_PG_URL = "https://cloudnative-pg.github.io/charts" HELM_CLOUD_NATIVE_PG_URL = "https://cloudnative-pg.github.io/charts"
HELM_CLOUD_NATIVE_PG_CHART = "cnpg/cloudnative-pg" HELM_CLOUD_NATIVE_PG_CHART = "cloudnative-pg"
HELM_CLOUD_NATIVE_PG_CHART_VERSION = "1.29.0" HELM_CLOUD_NATIVE_PG_CHART_VERSION = "1.29.0"
) )