Skip to content

Commit

Permalink
Release on rn-bdr-registry-notifications version 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
olimpiurob committed Nov 27, 2024
1 parent 7c569d1 commit d88fb17
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 2 deletions.
13 changes: 12 additions & 1 deletion docs/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6083,6 +6083,17 @@ entries:
- rn-bdr-registry-0.1.0.tgz
version: 0.1.0
rn-bdr-registry-notifications:
- apiVersion: v2
appVersion: 1.3.3
created: "2024-11-27T17:15:28.427532+02:00"
description: A Helm chart for BDR Registry Notifications service
digest: a4edef475a66b728d53fdc04cf891f3d03ccbb8a098e3ada9affc29bbf5d4af0
icon: https://raw.githubusercontent.com/eea/helm-charts/main/sources/rn-bdr-registry-notifications/logo_eionet.png
name: rn-bdr-registry-notifications
type: application
urls:
- rn-bdr-registry-notifications-0.1.4.tgz
version: 0.1.4
- apiVersion: v2
appVersion: 1.3.3
created: "2024-11-26T17:11:51.590907+02:00"
Expand Down Expand Up @@ -7686,4 +7697,4 @@ entries:
urls:
- zz-testing-catalogrefresh-2.0.0.tgz
version: 2.0.0
generated: "2024-11-27T12:47:43.135574981+01:00"
generated: "2024-11-27T17:15:28.426588+02:00"
Binary file added docs/rn-bdr-registry-notifications-0.1.4.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion sources/rn-bdr-registry-notifications/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ icon: https://raw.githubusercontent.com/eea/helm-charts/main/sources/rn-bdr-regi

type: application

version: 0.1.3
version: 0.1.4

appVersion: "1.3.3"
3 changes: 3 additions & 0 deletions sources/rn-bdr-registry-notifications/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ BDR Registry Notifications Service Chart for BDR

## Releases

### Version 0.1.4
- Added basic livenessprobe for qcluster operation.

### Version 0.1.3
- Added redisHost and redisPort env variables in deployment

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,23 @@ spec:
value: {{ .Values.service.port | quote }}
- name: POSTGRES_ADDR
value: {{ .Values.databasesHost | quote }}
{{- if .Values.deploymentArgs }}
livenessProbe:
exec:
command:
- /bin/sh
- -c
- "cd /var/local/bdr.registry.notifications && python manage.py qinfo | grep 'Clusters' | cut -d'W' -f1 | grep -o '[0-9]\\+' | grep -q '^[1-9]'"
initialDelaySeconds: 60
periodSeconds: 60
timeoutSeconds: 10
failureThreshold: 3
{{ else}}
livenessProbe:
{{- toYaml .Values.livenessProbe | nindent 12 }}
readinessProbe:
{{- toYaml .Values.readinessProbe | nindent 12 }}
{{- end }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:
Expand Down

0 comments on commit d88fb17

Please sign in to comment.