Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions charts/matrix-authentication-service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ A Helm chart for deploying the matrix authentication service on Kubernetes
| configVolume.existingClaim | string | `""` | name of an existing persistent volume claim to use for matrix-authentication-service config. If provided, ignores mas parameter map |
| configVolume.storage | string | `"500Mi"` | storage capacity for creating a persistent volume |
| configVolume.storageClassName | string | `"default"` | name of storage class for the persistent volume |
| deploymentAnnotations | object | `{}` | |
| deploymentLabels | object | `{}` | |
| existingMasConfigSecret | string | `""` | Existing Kubernetes Secret for entire matrix authentication service `config.yaml` file. If set, everything under the mas section of the values.yaml is ignored. |
| externalDatabase.database | string | `"mas"` | name of the database to try and connect to |
| externalDatabase.enabled | bool | `false` | enable using an external database *instead of* the Bitnami PostgreSQL sub-chart if externalDatabase.enabled is set to true, postgresql.enabled must be set to false |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ metadata:
name: {{ include "matrix-authentication-service.fullname" . }}
labels:
{{- include "matrix-authentication-service.labels" . | nindent 4 }}
{{- with .Values.deploymentLabels }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.deploymentAnnotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
{{- if not .Values.autoscaling.enabled }}
replicas: {{ .Values.replicaCount }}
Expand Down
2 changes: 2 additions & 0 deletions charts/matrix-authentication-service/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ serviceAccount:
# If not set and create is true, a name is generated using the fullname template
name: ""

deploymentAnnotations: {}
deploymentLabels: {}
podAnnotations: {}
podLabels: {}

Expand Down