Skip to content

Commit

Permalink
Release on cdr version 0.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
olimpiurob committed Nov 20, 2024
1 parent ab2ee23 commit 902a4ec
Show file tree
Hide file tree
Showing 8 changed files with 50 additions and 2 deletions.
Binary file added docs/cdr-0.3.7.tgz
Binary file not shown.
33 changes: 32 additions & 1 deletion docs/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -919,6 +919,37 @@ entries:
- casservice-1.0.0.tgz
version: 1.0.0
cdr:
- apiVersion: v2
appVersion: 6.7.3-194
created: "2024-11-20T18:35:57.598249+02:00"
dependencies:
- alias: zeoserver
name: rn-zeoserver
repository: https://eea.github.io/helm-charts
version: 0.1.5
- alias: varnish
condition: rn-varnish.enabled
name: rn-varnish
repository: https://eea.github.io/helm-charts
version: 0.1.5
- alias: local-converters
condition: rn-local-converters.enabled
name: rn-local-converters
repository: https://eea.github.io/helm-charts
version: 0.1.3
- alias: clamav
condition: rn-clamav.enabled
name: rn-clamav
repository: https://eea.github.io/helm-charts
version: 0.1.4
description: A CDR Helm chart for Kubernetes
digest: 22f27ac80e5b1c655290eb7c7c71b6974dd93f0e0a20145388d7ee108a653916
icon: https://raw.githubusercontent.com/eea/helm-charts/main/sources/cdr/logo_eionet.png
name: cdr
type: application
urls:
- cdr-0.3.7.tgz
version: 0.3.7
- apiVersion: v2
appVersion: 6.7.3-194
created: "2024-11-19T14:00:17.353335+02:00"
Expand Down Expand Up @@ -7021,4 +7052,4 @@ entries:
urls:
- zz-testing-catalogrefresh-2.0.0.tgz
version: 2.0.0
generated: "2024-11-19T14:05:49.459694+02:00"
generated: "2024-11-20T18:35:57.594184+02:00"
2 changes: 1 addition & 1 deletion sources/cdr/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ icon: https://raw.githubusercontent.com/eea/helm-charts/main/sources/cdr/logo_ei

type: application

version: 0.3.6
version: 0.3.7

appVersion: "6.7.3-194"

Expand Down
3 changes: 3 additions & 0 deletions sources/cdr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ This chart is almost configured for production use.

## Releases

### Version 0.3.7
- Conditionally create and mount zip_cache pvc/pv if zipCacheEnabled is true.

### Version 0.3.6
- Updated rn-clamav and rn-local-converters

Expand Down
4 changes: 4 additions & 0 deletions sources/cdr/templates/cron-auto-fallin-cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,18 +94,22 @@ spec:
- name: SCHEDULE_PERIOD
value: '{{ .Values.cronautofallin.env.schedulePeriod }}'
volumeMounts:
{{- if .Values.instance.env.zipCacheEnabled }}
- mountPath: /opt/zope/var/zip_cache
name: {{ include "appl.fullname" . }}-zipcache-storage
{{- end }}
- mountPath: /sessions
name: {{ include "appl.fullname" . }}-sessions-storage
- mountPath: /tmp
name: {{ include "appl.fullname" . }}-tmpdir-storage

restartPolicy: Never
volumes:
{{- if .Values.instance.env.zipCacheEnabled }}
- name: {{ include "appl.fullname" . }}-zipcache-storage
persistentVolumeClaim:
claimName: {{ include "appl.fullname" . }}-zipcache-storage
{{- end }}
- name: {{ include "appl.fullname" . }}-sessions-storage
persistentVolumeClaim:
claimName: {{ include "appl.fullname" . }}-sessions-storage
Expand Down
4 changes: 4 additions & 0 deletions sources/cdr/templates/cron-zipcache-cleanup-cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,21 @@ spec:
- name: LOCAL_CONVERTERS_HOST
value: '{{ .Values.instance.env.localConvertersHost }}'
volumeMounts:
{{- if .Values.instance.env.zipCacheEnabled }}
- mountPath: /opt/zope/var/zip_cache
name: {{ include "appl.fullname" . }}-zipcache-storage
{{- end }}
- mountPath: /sessions
name: {{ include "appl.fullname" . }}-sessions-storage
- mountPath: /tmp
name: {{ include "appl.fullname" . }}-tmpdir-storage
restartPolicy: Never
volumes:
{{- if .Values.instance.env.zipCacheEnabled }}
- name: {{ include "appl.fullname" . }}-zipcache-storage
persistentVolumeClaim:
claimName: {{ include "appl.fullname" . }}-zipcache-storage
{{- end }}
- name: {{ include "appl.fullname" . }}-sessions-storage
persistentVolumeClaim:
claimName: {{ include "appl.fullname" . }}-sessions-storage
Expand Down
4 changes: 4 additions & 0 deletions sources/cdr/templates/instance-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,10 @@ spec:
value: '{{ .Values.instance.env.localConvertersHost }}'

volumeMounts:
{{- if .Values.instance.env.zipCacheEnabled }}
- mountPath: /opt/zope/var/zip_cache
name: {{ include "appl.fullname" . }}-zipcache-storage
{{- end }}
- mountPath: /sessions
name: {{ include "appl.fullname" . }}-sessions-storage
- mountPath: /tmp
Expand Down Expand Up @@ -115,9 +117,11 @@ spec:

restartPolicy: Always
volumes:
{{- if .Values.instance.env.zipCacheEnabled }}
- name: {{ include "appl.fullname" . }}-zipcache-storage
persistentVolumeClaim:
claimName: {{ include "appl.fullname" . }}-zipcache-storage
{{- end }}
- name: {{ include "appl.fullname" . }}-sessions-storage
persistentVolumeClaim:
claimName: {{ include "appl.fullname" . }}-sessions-storage
Expand Down
2 changes: 2 additions & 0 deletions sources/cdr/templates/instance-zipcachestorage-pvc.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{- if .Values.instance.env.zipCacheEnabled }}
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
Expand All @@ -13,3 +14,4 @@ spec:
resources:
requests:
storage: 1Gi
{{- end }}

0 comments on commit 902a4ec

Please sign in to comment.