this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(platform): setup CloudNativePG

+56
+35
platform/staging/cloudnative-pg.yaml
··· 1 + apiVersion: source.toolkit.fluxcd.io/v1 2 + kind: HelmRepository 3 + metadata: 4 + name: cnpg 5 + namespace: flux-system 6 + spec: 7 + type: oci 8 + interval: 1h 9 + url: oci://registry.registry.svc.cluster.local:5000/vendor/charts/cloudnative-pg 10 + --- 11 + apiVersion: helm.toolkit.fluxcd.io/v2 12 + kind: HelmRelease 13 + metadata: 14 + name: cnpg 15 + namespace: flux-system 16 + spec: 17 + interval: 30m 18 + dependsOn: 19 + - name: platform-namespaces 20 + install: 21 + remediation: 22 + retries: -1 23 + chart: 24 + spec: 25 + chart: cloudnative-pg 26 + version: 0.28.0 27 + sourceRef: 28 + kind: HelmRepository 29 + name: cnpg 30 + releaseName: cnpg 31 + targetNamespace: cnpg-system 32 + values: 33 + image: 34 + repository: registry.registry.svc.cluster.local/vendor/images/cloudnative-pg/cloudnative-pg 35 + tag: 1.29.0
+5
platform/staging/namespaces.yaml
··· 24 24 kind: Namespace 25 25 forceRename: cert-manager 26 26 spec: {} 27 + cnpg-system: 28 + apiVersion: v1 29 + kind: Namespace 30 + forceRename: cnpg-system 31 + spec: {} 27 32 dex: 28 33 apiVersion: v1 29 34 kind: Namespace
+16
settings.yaml
··· 36 36 Enter Dex khuedoan password hash. 37 37 (Generate with: echo mypassword | htpasswd -BinC 10 "" | cut -d: -f2) 38 38 vendors: 39 + vendor/charts/cloudnative-pg: 40 + kind: chart 41 + repo_url: https://cloudnative-pg.github.io/charts 42 + chart: cloudnative-pg 43 + versions: 44 + - 0.28.0 45 + vendor/images/cloudnative-pg/cloudnative-pg: 46 + kind: image 47 + source: ghcr.io/cloudnative-pg/cloudnative-pg 48 + versions: 49 + - 1.29.0 50 + vendor/images/cloudnative-pg/postgresql: 51 + kind: image 52 + source: ghcr.io/cloudnative-pg/postgresql 53 + versions: 54 + - 17.6-system-trixie 39 55 vendor/charts/dex: 40 56 kind: chart 41 57 repo_url: https://charts.dexidp.io