Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
… into issue/#13

� Conflicts:
�	charts/open-notificaties/Chart.yaml
�	charts/open-notificaties/templates/deployment.yaml
�	charts/open-zaak/Chart.yaml
  • Loading branch information
andyverberne committed Aug 18, 2021
2 parents 8d93316 + af70657 commit 3ac3f29
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 34 deletions.
3 changes: 0 additions & 3 deletions charts/open-notificaties/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ helm install open-notificaties open-zaak/open-notificaties \
| `ingress.annotations` | Additional annotations on the API ingress | `{}` |
| `ingress.hosts` | Ingress hosts | `"{open-notificaties.gemeente.nl}"` |
| `ingress.tls` | Ingress TLS settings | `"[]"` |
| `persistence.enabled` | Enable persistency for application media | `false` |
| `persistence.size` | The size of the application media persistent volume | `"1Gi"` |
| `persistence.existingClaim` | Use an existing claim for application media | `null` |
| `settings.allowedHosts` | A comma-separated list of hosts allowed by the application | `"open-notificaties.gemeente.nl"` |
| `settings.secretKey` | The secret key of the application | `"SOME-RANDOM-SECRET"` |
| `settings.database.host` | The hostname of PostgreSQL | `"open-notificaties-postgresql"` |
Expand Down
13 changes: 1 addition & 12 deletions charts/open-notificaties/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Deployment
metadata:
name: {{ include "open-notificaties.fullname" . }}
labels:
{{- include "open-notificaties.labels" . | nindent 4 }}
{{- include "open-notificaties.labels" . | nindent 4 }}
spec:
{{- if not .Values.autoscaling.enabled }}
replicas: {{ .Values.replicaCount }}
Expand Down Expand Up @@ -62,17 +62,6 @@ spec:
{{- toYaml .Values.readinessProbe | nindent 12 }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:
- name: media
mountPath: /media
volumes:
- name: media
{{- if .Values.persistence.enabled }}
persistentVolumeClaim:
claimName: {{ if .Values.persistence.existingClaim }}{{ .Values.persistence.existingClaim }}{{- else }}{{ include "open-notificaties.fullname" . }}{{- end }}
{{- else }}
emptyDir: {}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
14 changes: 0 additions & 14 deletions charts/open-notificaties/templates/pvc.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions charts/open-notificaties/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ tolerations: []

affinity: {}

persistence:
enabled: false
size: 1Gi
existingClaim: null

worker:
replicaCount: 1
resources: {}
Expand Down

0 comments on commit 3ac3f29

Please sign in to comment.