Skip to content

Commit

Permalink
Updated cdr to 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
olimpiurob committed Jul 24, 2024
1 parent 7c32d18 commit f13abc9
Show file tree
Hide file tree
Showing 9 changed files with 265 additions and 236 deletions.
Binary file added docs/cdr-0.1.4.tgz
Binary file not shown.
457 changes: 242 additions & 215 deletions docs/index.yaml

Large diffs are not rendered by default.

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.1.3
version: 0.1.4

appVersion: "6.7.3-193"

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

<dl>

<dt>Version 0.1.4</dt>
<dd>Get the image and tag from image section.</dd>

<dt>Version 0.1.3</dt>
<dd>Changed rabbitmq to externalName.</dd>

Expand Down
4 changes: 2 additions & 2 deletions sources/cdr/templates/cron-auto-env-cleanup-cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:

containers:
- name: cron-auto-env-cleanup
image: "{{ .Values.instance.repository }}:{{ .Values.instance.tag | default .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
resources:
{{- toYaml .Values.cronautoenvcleanup.resources | nindent 14 }}
Expand All @@ -44,4 +44,4 @@ spec:
- name: ZEO_ADDRESS
value: "{{ .Values.instance.env.zeoAddress }}"
restartPolicy: Never
{{- end }}
{{- end }}
4 changes: 2 additions & 2 deletions sources/cdr/templates/cron-auto-fallin-cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:

containers:
- name: cron-auto-fallin
image: "{{ .Values.instance.repository }}:{{ .Values.instance.tag | default .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
resources:
{{- toYaml .Values.cronautofallin.resources | nindent 14 }}
Expand Down Expand Up @@ -107,4 +107,4 @@ spec:
- name: {{ .Values.deployment }}-tmpdir-storage
persistentVolumeClaim:
claimName: {{ .Values.deployment }}-tmpdir-storage
{{- end }}
{{- end }}
4 changes: 2 additions & 2 deletions sources/cdr/templates/cron-zipcache-cleanup-cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:

containers:
- name: cron-zipcache-cleanup
image: "{{ .Values.instance.repository }}:{{ .Values.instance.tag | default .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
resources:
{{- toYaml .Values.cronzipcachecleanup.resources | nindent 14 }}
Expand Down Expand Up @@ -77,4 +77,4 @@ spec:
- name: {{ .Values.deployment }}-tmpdir-storage
persistentVolumeClaim:
claimName: {{ .Values.deployment }}-tmpdir-storage
{{- end }}
{{- end }}
2 changes: 1 addition & 1 deletion sources/cdr/templates/instance-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:

containers:
- name: instance
image: "{{ .Values.instance.repository }}:{{ .Values.instance.tag | default .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}

ports:
Expand Down
24 changes: 11 additions & 13 deletions sources/cdr/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@ deployment: cdr
timezone: Europe/Copenhagen

# used by the cron-zeopack job
cdrUser: ''
cdrPass: ''
cdrUser: ""
cdrPass: ""

instance:
enabled: true
repository: eeacms/reportek-cdr
tag: ""
replicaCount: 1
port: 8080
resources:
Expand All @@ -25,8 +23,8 @@ instance:
memory: 2Gi
env:
beakerPath: /sessions
beakerSecret: ''
sentryDSN: ''
beakerSecret: ""
sentryDSN: ""
zopeThreads: 4
deploymentHost: cdr.eionet.europa.eu
cachePurgingDomain: cdr.eionet.europa.eu
Expand All @@ -36,12 +34,12 @@ instance:
cachePurgingVhost: true
cacheSettingsEnabled: true
clamavHost: clamav
graylog: ''
graylogFacility: ''
graylog: ""
graylogFacility: ""
rabbitmqEnabled: false
rabbitmqHost: ''
rabbitmqUser: ''
rabbitmqPass: ''
rabbitmqHost: ""
rabbitmqUser: ""
rabbitmqPass: ""
rabbitmqPort: 5672
zipCacheEnabled: true
zipCachePath: /opt/zope/var
Expand Down Expand Up @@ -153,7 +151,7 @@ rn-clamav:
targetMemoryUtilizationPercentage: 80

rabbitmq:
externalName:
externalName:

imagePullSecrets: []
nameOverride: ""
Expand Down Expand Up @@ -202,7 +200,7 @@ ingress:
- path: /(.*)
pathType: Prefix
tls:
- secretName: ''
- secretName: ""
hosts:
- cdr.eionet.europa.eu

Expand Down

0 comments on commit f13abc9

Please sign in to comment.