Skip to content

Commit

Permalink
Release on rn-zeoserver version 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
olimpiurob committed Dec 27, 2024
1 parent d1ea0a7 commit 5a175ab
Show file tree
Hide file tree
Showing 6 changed files with 31 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 @@ -7716,6 +7716,17 @@ entries:
- rn-varnish-0.1.0.tgz
version: 0.1.0
rn-zeoserver:
- apiVersion: v2
appVersion: 1.2.0
created: "2024-12-27T12:45:44.373916+02:00"
description: A Reportnet2 zeoserver helm chart for Kubernetes
digest: c715a56609c9ab8ec84711001f9de5697bf77f4a3dbe90475a5d9b8aa1a6d431
icon: https://raw.githubusercontent.com/eea/helm-charts/main/sources/rn-zeoserver/logo_eionet.png
name: rn-zeoserver
type: application
urls:
- rn-zeoserver-0.1.6.tgz
version: 0.1.6
- apiVersion: v2
appVersion: 1.2.0
created: "2024-12-19T14:26:55.787737+01:00"
Expand Down Expand Up @@ -9117,4 +9128,4 @@ entries:
urls:
- zz-testing-catalogrefresh-2.0.0.tgz
version: 2.0.0
generated: "2024-12-27T12:15:55.849739+02:00"
generated: "2024-12-27T12:45:44.373476+02:00"
Binary file added docs/rn-zeoserver-0.1.6.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion sources/rn-zeoserver/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-zeoserve

type: application

version: 0.1.5
version: 0.1.6

appVersion: "1.2.0"
6 changes: 6 additions & 0 deletions sources/rn-zeoserver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ Zeoserver is the Zope server for Reportek
- `timezone` - Time zone.
- `storage` - Size of the persistent volume claim.
- `storageName` - Name of the persistent volume claim.
- `zeoUid` - UID of the user running the ZEO server. Defaults to 500.
- `zeoGid` - GID of the user running the ZEO server. Defaults to 500.
- `zeoPackKeepOld` - Keep old pack files. Defaults to true.

## Releases

### Version 0.1.6
- Added zeoUid, zeoGid and zeoPackKeepOld values.

### Version 0.1.5
- Added initContainer to create storage directories.

Expand Down
9 changes: 9 additions & 0 deletions sources/rn-zeoserver/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,15 @@ spec:
- name: TZ
value: {{ .Values.timezone }}

- name: ZEO_UID
value: '{{ .Values.zeoUid }}'

- name: ZEO_GID
value: '{{ .Values.zeoGid }}'

- name: ZEO_PACK_KEEP_OLD
value: '{{ .Values.zeoPackKeepOld }}'

volumeMounts:
- mountPath: /data
name: {{ .Values.storageName }}
Expand Down
3 changes: 3 additions & 0 deletions sources/rn-zeoserver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ storage: 30Gi
storageName: zeodata

timezone: Europe/Copenhagen
zeoUid: 500
zeoGid: 500
zeoPackKeepOld: true

startupProbe:
tcpSocket:
Expand Down

0 comments on commit 5a175ab

Please sign in to comment.