Compare commits

...

8 Commits

Author SHA1 Message Date
renovate[bot]
295a7296bc Update cloudflare/cloudflared Docker tag to v2024.6.1 (#60)
* Update cloudflare/cloudflared Docker tag to v2024.6.1

* update chart

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: alexlebens <alexanderlebens@gmail.com>
2024-06-28 17:01:04 -05:00
f1b4020287 change flow control 2024-06-22 18:26:19 -05:00
969357a664 change null handling 2024-06-22 18:22:25 -05:00
5685190e43 remove field not declared in schema 2024-06-22 18:18:03 -05:00
5e88f116fc disable rules by default 2024-06-22 17:58:43 -05:00
f99ebfaa44 change initdb keys 2024-06-14 21:37:00 -05:00
64e3612762 fix init keys 2024-06-14 21:30:54 -05:00
a6821995ca fix post init location 2024-06-14 21:23:48 -05:00
8 changed files with 28 additions and 33 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v2 apiVersion: v2
name: cloudflared name: cloudflared
version: 1.4.0 version: 1.4.1
description: Cloudflared Tunnel description: Cloudflared Tunnel
keywords: keywords:
- cloudflare - cloudflare
@@ -15,4 +15,4 @@ dependencies:
repository: https://bjw-s.github.io/helm-charts/ repository: https://bjw-s.github.io/helm-charts/
version: 3.2.1 version: 3.2.1
icon: https://avatars.githubusercontent.com/u/314135?s=48&v=4 icon: https://avatars.githubusercontent.com/u/314135?s=48&v=4
appVersion: "2024.6.0" appVersion: "2024.6.1"

View File

@@ -3,7 +3,7 @@ existingSecretName: cloudflared-secret
existingSecretKey: cf-tunnel-token existingSecretKey: cf-tunnel-token
image: image:
repository: cloudflare/cloudflared repository: cloudflare/cloudflared
tag: "2024.6.0" tag: "2024.6.1"
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
resources: resources:
requests: requests:

View File

@@ -1,6 +1,6 @@
apiVersion: v2 apiVersion: v2
name: mysql-cluster name: mysql-cluster
version: 0.2.1 version: 0.2.4
description: Chart for a mysql cluster description: Chart for a mysql cluster
keywords: keywords:
- database - database

View File

@@ -15,43 +15,43 @@ metadata:
{{- end }} {{- end }}
spec: spec:
instances: {{ required "serverInstances is required" .Values.cluster.serverInstances }} instances: {{ required "serverInstances is required" .Values.cluster.serverInstances }}
baseServerId: {{ required "baseServerId is required" .Values.cluster.baseServerId }} baseServerId: {{ required "baseServerId is required" .Values.cluster.baseServerId }}
serviceAccountName: {{ include "mysql.serviceAccountName" . }} serviceAccountName: {{ include "mysql.serviceAccountName" . }}
imagePullPolicy : {{ .Values.cluster.image.pullPolicy }} imagePullPolicy : {{ .Values.cluster.image.pullPolicy }}
version: {{ .Values.cluster.image.version }} version: {{ .Values.cluster.image.version }}
tlsUseSelfSigned: true tlsUseSelfSigned: true
secretName: {{ .Values.cluster.exisitingCredentialsSecret }} secretName: {{ .Values.cluster.exisitingCredentialsSecret }}
{{- if .Values.cluster.podSpec }}
podSpec: podSpec:
{{- with .Values.cluster.podSpec }} {{ toYaml .Values.cluster.podSpec | nindent 4 }}
{{ toYaml . | nindent 4 }} {{- end }}
{{- end }} {{- if .Values.cluster.podAnnotations }}
podAnnotations: podAnnotations:
{{- with .Values.cluster.podAnnotations }} {{ toYaml .Values.cluster.podAnnotations | nindent 4 }}
{{ toYaml . | nindent 4 }} {{- end }}
{{- end }} {{- if .Values.cluster.podLabels }}
podLabels: podLabels:
{{- with .Values.cluster.podLabels }} {{ toYaml .Values.cluster.podLabels | nindent 4 }}
{{ toYaml . | nindent 4 }} {{- end }}
{{- end }}
router: router:
instances: {{ required "router.instances is required" .Values.cluster.router.instances }} instances: {{ required "router.instances is required" .Values.cluster.router.instances }}
{{- if .Values.cluster.router.podSpec }}
podSpec: podSpec:
{{- with .Values.cluster.router.podSpec }} {{- toYaml .Values.cluster.router.podSpec | nindent 6 }}
{{- toYaml . | nindent 6 }} {{- end }}
{{- end }} {{- if .Values.cluster.router.podAnnotations }}
podAnnotations: podAnnotations:
{{- with .Values.cluster.router.podAnnotations }} {{- toYaml .Values.cluster.router.podAnnotations | nindent 6 }}
{{- toYaml . | nindent 6 }} {{- end }}
{{- end }} {{- if .Values.cluster.router.podLabels }}
podLabels: podLabels:
{{- with .Values.cluster.router.podLabels }} {{- toYaml .Values.cluster.router.podLabels | nindent 6 }}
{{- toYaml . | nindent 6 }} {{- end }}
{{- end }}
tlsSecretName: {{ include "cluster.name" . }}-router-tls tlsSecretName: {{ include "cluster.name" . }}-router-tls
logs: logs:
{{- with .Values.cluster.logs }} {{- with .Values.cluster.logs }}
{{ toYaml . | nindent 4 }} {{ toYaml . | nindent 4 }}
{{- end }} {{- end }}
mycnf: | mycnf: |
{{ .Values.cluster.serverConfig.mycnf | indent 4 }} {{ .Values.cluster.serverConfig.mycnf | indent 4 }}
{{- if .Values.cluster.datadirVolumeClaimTemplate }} {{- if .Values.cluster.datadirVolumeClaimTemplate }}

View File

@@ -40,7 +40,6 @@ cluster:
logs: logs:
error: error:
enabled: true
collect: false collect: false
general: general:
enabled: false enabled: false

View File

@@ -1,6 +1,6 @@
apiVersion: v2 apiVersion: v2
name: postgres-cluster name: postgres-cluster
version: 3.2.0 version: 3.6.0
description: Chart for cloudnative-pg cluster description: Chart for cloudnative-pg cluster
keywords: keywords:
- database - database

View File

@@ -20,9 +20,6 @@ bootstrap:
{{- range .postInitApplicationSQL }} {{- range .postInitApplicationSQL }}
{{- printf "- %s" . | nindent 6 }} {{- printf "- %s" . | nindent 6 }}
{{- end }} {{- end }}
{{- range .postInitSQL }}
{{- printf "- %s" . | nindent 6 }}
{{- end }}
{{- end }} {{- end }}
{{- else if eq .Values.mode "replica" }} {{- else if eq .Values.mode "replica" }}
initdb: initdb:

View File

@@ -68,7 +68,7 @@ cluster:
podMonitor: podMonitor:
enabled: true enabled: true
prometheusRule: prometheusRule:
enabled: true enabled: false
excludeRules: [] excludeRules: []
# See: https://cloudnative-pg.io/documentation/current/cloudnative-pg.v1/#postgresql-cnpg-io-v1-PostgresConfiguration # See: https://cloudnative-pg.io/documentation/current/cloudnative-pg.v1/#postgresql-cnpg-io-v1-PostgresConfiguration
@@ -81,8 +81,7 @@ cluster:
# BootstrapInitDB is the configuration of the bootstrap process when initdb is used. # BootstrapInitDB is the configuration of the bootstrap process when initdb is used.
# See: https://cloudnative-pg.io/documentation/current/bootstrap/ # See: https://cloudnative-pg.io/documentation/current/bootstrap/
# See: https://cloudnative-pg.io/documentation/current/cloudnative-pg.v1/#postgresql-cnpg-io-v1-bootstrapinitdb # See: https://cloudnative-pg.io/documentation/current/cloudnative-pg.v1/#postgresql-cnpg-io-v1-bootstrapinitdb
initdb: initdb: {}
{}
# database: app # database: app
# owner: app # owner: app
# secret: "" # Name of the secret containing the initial credentials for the owner of the user database. If empty a new secret will be created from scratch # secret: "" # Name of the secret containing the initial credentials for the owner of the user database. If empty a new secret will be created from scratch