Compare commits

...

12 Commits
main ... main

Author SHA1 Message Date
4a4b6ba4fc Merge pull request 'Update actions/checkout action to v4' (#79) from renovate/actions-checkout-4.x into main
All checks were successful
checks / check and test (push) Successful in 52s
Reviewed-on: coo-ops.space/helm-charts#79
2024-08-20 08:45:32 +00:00
ad67b6d253 Update actions/checkout action to v4
All checks were successful
checks / check and test (push) Successful in 58s
checks / check and test (pull_request) Successful in 43s
2024-08-10 10:06:00 +00:00
766991e454 Merge pull request 'Update Helm release mariadb to v18' (#69) from renovate/mariadb-18.x into main
All checks were successful
checks / check and test (push) Successful in 50s
Reviewed-on: coo-ops.space/helm-charts#69
2024-05-14 06:39:12 +00:00
779ad7b00b Update Helm release mariadb to v18
Some checks failed
checks / check and test (pull_request) Failing after 21s
checks / check and test (push) Successful in 59s
2024-05-14 06:31:05 +00:00
87d3c84731 Merge pull request 'Update Helm release mariadb to v14' (#29) from renovate/mariadb-14.x into main
All checks were successful
checks / check and test (push) Successful in 37s
Reviewed-on: coo-ops.space/helm-charts#29
2023-10-26 13:15:28 +00:00
4370b2ad01 Update Helm release mariadb to v14
All checks were successful
checks / check and test (push) Successful in 37s
checks / check and test (pull_request) Successful in 35s
2023-10-25 13:37:48 +00:00
c8f8e96cd0 Merge pull request 'Update Helm release mariadb to v12.2.8' (#21) from renovate/mariadb-12.x into main
All checks were successful
checks / check and test (push) Successful in 27s
Reviewed-on: coo-ops.space/helm-charts#21
2023-07-24 11:25:49 +00:00
7444d9c53a Update Helm release mariadb to v12.2.8
All checks were successful
checks / check and test (push) Successful in 29s
checks / check and test (pull_request) Successful in 27s
2023-07-13 15:30:33 +00:00
820369de0c Merge pull request 'Update Helm release mariadb to v12.2.7' (#20) from renovate/mariadb-12.x into main
All checks were successful
checks / check and test (push) Successful in 28s
Reviewed-on: coo-ops.space/helm-charts#20
2023-07-09 14:36:30 +00:00
5bc4197bc3 Update Helm release mariadb to v12.2.7
All checks were successful
checks / check and test (push) Successful in 28s
checks / check and test (pull_request) Successful in 27s
2023-07-09 14:30:33 +00:00
0x6b-dev
152ce3479a add in the enabled/disabled flags for probes
All checks were successful
checks / check and test (push) Successful in 28s
2023-07-10 00:15:05 +10:00
0x6b-dev
67d26d4c59 added liveliness probe, readiness probe and startup probe
Some checks failed
checks / check and test (push) Failing after 1m28s
2023-07-10 00:10:55 +10:00
10 changed files with 134 additions and 8 deletions

View File

@ -10,7 +10,7 @@ jobs:
name: check and test
runs-on: ubuntu-latest
steps:
- uses: https://gitea.com/actions/checkout@v3
- uses: https://gitea.com/actions/checkout@v4
- name: install tools
run: |
apt update -y

View File

@ -9,7 +9,7 @@ jobs:
generate-chart-publish:
runs-on: ubuntu-latest
steps:
- uses: https://gitea.com/actions/checkout@v3
- uses: https://gitea.com/actions/checkout@v4
- name: install tools
run: |
apt update -y

View File

@ -38,6 +38,18 @@ spec:
- name: http
containerPort: 7745
protocol: TCP
{{- if .Values.livenessProbe.enabled }}
livenessProbe:
{{- toYaml (omit .Values.livenessProbe "enabled") | nindent 12 }}
{{- end }}
{{- if .Values.readinessProbe.enabled }}
readinessProbe:
{{- toYaml (omit .Values.readinessProbe "enabled") | nindent 12 }}
{{- end }}
{{- if .Values.startupProbe.enabled }}
startupProbe:
{{- toYaml (omit .Values.startupProbe "enabled") | nindent 12 }}
{{- end }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:

View File

@ -64,3 +64,33 @@ persistence:
extraVolumes: []
extraContainerVolumeMounts: []
livenessProbe:
enabled: true
tcpSocket:
port: http
initialDelaySeconds: 200
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 10
readinessProbe:
enabled: true
tcpSocket:
port: http
initialDelaySeconds: 5
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
startupProbe:
enabled: false
tcpSocket:
port: http
initialDelaySeconds: 60
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 10

View File

@ -38,6 +38,18 @@ spec:
- name: http
containerPort: 7745
protocol: TCP
{{- if .Values.livenessProbe.enabled }}
livenessProbe:
{{- toYaml (omit .Values.livenessProbe "enabled") | nindent 12 }}
{{- end }}
{{- if .Values.readinessProbe.enabled }}
readinessProbe:
{{- toYaml (omit .Values.readinessProbe "enabled") | nindent 12 }}
{{- end }}
{{- if .Values.startupProbe.enabled }}
startupProbe:
{{- toYaml (omit .Values.startupProbe "enabled") | nindent 12 }}
{{- end }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:

View File

@ -54,4 +54,34 @@ extraVolumes:
# readOnly: false
extraVolumeMounts:
# - name: nfs
# mountPath: "/legacy_data"
# mountPath: "/legacy_data"
livenessProbe:
enabled: true
tcpSocket:
port: http
initialDelaySeconds: 200
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 10
readinessProbe:
enabled: true
tcpSocket:
port: http
initialDelaySeconds: 5
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
startupProbe:
enabled: false
tcpSocket:
port: http
initialDelaySeconds: 60
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 10

View File

@ -1,6 +1,6 @@
dependencies:
- name: mariadb
repository: https://charts.bitnami.com/bitnami
version: 12.2.5
digest: sha256:c4f3a00e5c573be0ffdcc996e137f7d75ff44eafa0d79d5b257046ff7ab3ab90
generated: "2023-07-02T11:45:49.003932678Z"
version: 18.0.4
digest: sha256:0a9177fb8bda8a0fd4cb8b281de618035ca08cfbd2f99edcb5b21559593b74ce
generated: "2024-05-14T06:30:55.182258781Z"

View File

@ -20,7 +20,7 @@ sources:
- https://hub.docker.com/r/zurdi15/romm
dependencies:
- name: mariadb
version: 12.2.5
version: 18.0.4
repository: https://charts.bitnami.com/bitnami
condition: mariadb.enabled
# Who's looking after this Chart?

View File

@ -65,6 +65,18 @@ spec:
- name: http
containerPort: 80
protocol: TCP
{{- if .Values.livenessProbe.enabled }}
livenessProbe:
{{- toYaml (omit .Values.livenessProbe "enabled") | nindent 12 }}
{{- end }}
{{- if .Values.readinessProbe.enabled }}
readinessProbe:
{{- toYaml (omit .Values.readinessProbe "enabled") | nindent 12 }}
{{- end }}
{{- if .Values.startupProbe.enabled }}
startupProbe:
{{- toYaml (omit .Values.startupProbe "enabled") | nindent 12 }}
{{- end }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:

View File

@ -94,4 +94,34 @@ externalDatabase:
password: ""
## @param externalDatabase.database Name of the existing database
##
database: dmarc
database: dmarc
livenessProbe:
enabled: true
tcpSocket:
port: http
initialDelaySeconds: 200
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 10
readinessProbe:
enabled: true
tcpSocket:
port: http
initialDelaySeconds: 5
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
startupProbe:
enabled: false
tcpSocket:
port: http
initialDelaySeconds: 60
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 10