From 1b0937fd5f27793fbcb859cd24150942867dafab Mon Sep 17 00:00:00 2001 From: WrenIX Date: Mon, 20 Nov 2023 23:06:37 +0100 Subject: [PATCH] fix(grampsweb): init --- grampsweb/.helmignore | 23 +++ grampsweb/Chart.yaml | 8 + grampsweb/README.md | 85 +++++++++++ grampsweb/_docs.gotmpl | 0 grampsweb/templates/NOTES.txt | 22 +++ grampsweb/templates/_helpers.tpl | 62 ++++++++ grampsweb/templates/deployment.yaml | 117 +++++++++++++++ grampsweb/templates/hpa.yaml | 32 ++++ grampsweb/templates/ingress.yaml | 61 ++++++++ grampsweb/templates/pvc.yaml | 25 ++++ grampsweb/templates/secret.yaml | 29 ++++ grampsweb/templates/service.yaml | 15 ++ grampsweb/templates/serviceaccount.yaml | 13 ++ .../templates/tests/test-connection.yaml | 15 ++ grampsweb/values.yaml | 141 ++++++++++++++++++ 15 files changed, 648 insertions(+) create mode 100644 grampsweb/.helmignore create mode 100644 grampsweb/Chart.yaml create mode 100644 grampsweb/README.md create mode 100644 grampsweb/_docs.gotmpl create mode 100644 grampsweb/templates/NOTES.txt create mode 100644 grampsweb/templates/_helpers.tpl create mode 100644 grampsweb/templates/deployment.yaml create mode 100644 grampsweb/templates/hpa.yaml create mode 100644 grampsweb/templates/ingress.yaml create mode 100644 grampsweb/templates/pvc.yaml create mode 100644 grampsweb/templates/secret.yaml create mode 100644 grampsweb/templates/service.yaml create mode 100644 grampsweb/templates/serviceaccount.yaml create mode 100644 grampsweb/templates/tests/test-connection.yaml create mode 100644 grampsweb/values.yaml diff --git a/grampsweb/.helmignore b/grampsweb/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/grampsweb/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/grampsweb/Chart.yaml b/grampsweb/Chart.yaml new file mode 100644 index 0000000..ca4ea15 --- /dev/null +++ b/grampsweb/Chart.yaml @@ -0,0 +1,8 @@ +apiVersion: v2 +name: grampsweb +description: A Helm chart for gramps web + +type: application +version: 0.1.0 + +appVersion: "23.11.0" diff --git a/grampsweb/README.md b/grampsweb/README.md new file mode 100644 index 0000000..d9b2ab4 --- /dev/null +++ b/grampsweb/README.md @@ -0,0 +1,85 @@ +# grampsweb + +![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 23.11.0](https://img.shields.io/badge/AppVersion-23.11.0-informational?style=flat-square) + +A Helm chart for gramps web + +## Usage + +Helm must be installed and setup to your kubernetes cluster to use the charts. +Refer to Helm's [documentation](https://helm.sh/docs) to get started. +Once Helm has been set up correctly, fetch the charts as follows: + +```bash +helm pull oci://codeberg.org/wrenix/helm-charts/grampsweb +``` + +You can install a chart release using the following command: + +```bash +helm install grampsweb-release oci://codeberg.org/wrenix/helm-charts/grampsweb --values values.yaml +``` + +To uninstall a chart release use `helm`'s delete command: + +```bash +helm uninstall grampsweb-release +``` + +## Values + +| Key | Type | Default | Description | +|-----|------|---------|-------------| +| affinity | object | `{}` | | +| autoscaling.enabled | bool | `false` | | +| autoscaling.maxReplicas | int | `100` | | +| autoscaling.minReplicas | int | `1` | | +| autoscaling.targetCPUUtilizationPercentage | int | `80` | | +| fullnameOverride | string | `""` | | +| gramps.baseURL | string | `"https://gramps.example.org"` | | +| gramps.mail.from | string | `nil` | "From" address for automated e-mails | +| gramps.mail.host | string | `nil` | SMTP server host (e.g. for sending password reset e-mails) | +| gramps.mail.password | string | `nil` | SMTP server password | +| gramps.mail.port | int | `465` | SMTP server port. | +| gramps.mail.useTLS | bool | `true` | Boolean, whether to use TLS for sending e-mails. Defaults to true. When using STARTTLS, set this to false and use a port different from 25. | +| gramps.mail.username | string | `nil` | SMTP server username | +| gramps.tree | string | `"Gramps Web"` | | +| image.pullPolicy | string | `"IfNotPresent"` | | +| image.registry | string | `"ghcr.io"` | | +| image.repository | string | `"gramps-project/grampsweb"` | | +| image.tag | string | `""` | | +| imagePullSecrets | list | `[]` | | +| ingress.annotations | object | `{}` | | +| ingress.className | string | `""` | | +| ingress.enabled | bool | `false` | | +| ingress.hosts[0].host | string | `"chart-example.local"` | | +| ingress.hosts[0].paths[0].path | string | `"/"` | | +| ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | | +| ingress.tls | list | `[]` | | +| nameOverride | string | `""` | | +| nodeSelector | object | `{}` | | +| persistence.accessMode | string | `"ReadWriteOnce"` | | +| persistence.annotations | object | `{}` | | +| persistence.enabled | bool | `true` | | +| persistence.existingClaim | string | `nil` | A manually managed Persistent Volume and Claim Requires persistence.enabled: true If defined, PVC must be created manually before volume will be bound | +| persistence.hostPath | string | `nil` | Do not create an PVC, direct use hostPath in Pod | +| persistence.size | string | `"5Gi"` | | +| persistence.storageClass | string | `nil` | Persistent Volume Storage Class If defined, storageClassName: If set to "-", storageClassName: "", which disables dynamic provisioning If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner. (gp2 on AWS, standard on GKE, AWS & OpenStack) | +| podAnnotations | object | `{}` | | +| podLabels | object | `{}` | | +| podSecurityContext | object | `{}` | | +| replicaCount | int | `1` | | +| resources | object | `{}` | | +| securityContext | object | `{}` | | +| service.port | int | `5000` | | +| service.type | string | `"ClusterIP"` | | +| serviceAccount.annotations | object | `{}` | | +| serviceAccount.automount | bool | `true` | | +| serviceAccount.create | bool | `true` | | +| serviceAccount.name | string | `""` | | +| tolerations | list | `[]` | | +| volumeMounts | list | `[]` | | +| volumes | list | `[]` | | + +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs](https://github.com/norwoodj/helm-docs) diff --git a/grampsweb/_docs.gotmpl b/grampsweb/_docs.gotmpl new file mode 100644 index 0000000..e69de29 diff --git a/grampsweb/templates/NOTES.txt b/grampsweb/templates/NOTES.txt new file mode 100644 index 0000000..0e58d2d --- /dev/null +++ b/grampsweb/templates/NOTES.txt @@ -0,0 +1,22 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range $host := .Values.ingress.hosts }} + {{- range .paths }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }} + {{- end }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "grampsweb.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "grampsweb.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "grampsweb.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "grampsweb.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT +{{- end }} diff --git a/grampsweb/templates/_helpers.tpl b/grampsweb/templates/_helpers.tpl new file mode 100644 index 0000000..06987c6 --- /dev/null +++ b/grampsweb/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "grampsweb.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "grampsweb.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "grampsweb.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "grampsweb.labels" -}} +helm.sh/chart: {{ include "grampsweb.chart" . }} +{{ include "grampsweb.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "grampsweb.selectorLabels" -}} +app.kubernetes.io/name: {{ include "grampsweb.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "grampsweb.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "grampsweb.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/grampsweb/templates/deployment.yaml b/grampsweb/templates/deployment.yaml new file mode 100644 index 0000000..b69a0af --- /dev/null +++ b/grampsweb/templates/deployment.yaml @@ -0,0 +1,117 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "grampsweb.fullname" . }} + labels: + {{- include "grampsweb.labels" . | nindent 4 }} +spec: + {{- if not .Values.autoscaling.enabled }} + replicas: {{ .Values.replicaCount }} + {{- end }} + selector: + matchLabels: + {{- include "grampsweb.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "grampsweb.labels" . | nindent 8 }} + {{- with .Values.podLabels }} + {{- toYaml . | nindent 8 }} + {{- end }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "grampsweb.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default (printf "v%s" .Chart.AppVersion) }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + {{- with .Values.gramps }} + env: + - name: "TREE" + value: "{{ .tree }}" + - name: "BASE_URL" + value: "{{ .baseURL }}" + {{- end }} + envFrom: + - secretRef: + name: {{ include "grampsweb.fullname" . }} + ports: + - name: http + containerPort: {{ .Values.service.port }} + protocol: TCP + livenessProbe: + httpGet: + path: / + port: http + readinessProbe: + httpGet: + path: / + port: http + resources: + {{- toYaml .Values.resources | nindent 12 }} + volumeMounts: + # gramps_users + - name: "data" + mountPath: "/app/users" + subPath: "app/users" + # gramps_index + - name: "data" + mountPath: "/app/indexdir" + subPath: "app/indexdir" + # gramps_thumb_cache + - name: "data" + mountPath: "/app/thumbnail_cache" + subPath: "app/thumbnail_cache" + # gramps_secret + - name: "data" + mountPath: "/app/secret" + subPath: "app/secret" + # gramps_db + - name: "data" + mountPath: "/root/.gramps/grampsdb" + subPath: "root/.gramps/grampsdb" + # gramps_media + - name: "data" + mountPath: "/app/media" + subPath: "app/media" + {{- with .Values.volumeMounts }} + {{- toYaml . | nindent 12 }} + {{- end }} + volumes: + - name: "data" + {{- if .Values.persistence.hostPath }} + hostPath: + type: Directory + path: {{ .Values.persistence.hostPath | quote }} + {{- else if .Values.persistence.enabled }} + persistentVolumeClaim: + claimName: {{ if .Values.persistence.existingClaim }}{{ .Values.persistence.existingClaim }}{{- else }}{{ template "grampsweb.fullname" . }}{{- end }} + {{- else }} + emptyDir: {} + {{- end }} + {{- with .Values.volumes }} + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/grampsweb/templates/hpa.yaml b/grampsweb/templates/hpa.yaml new file mode 100644 index 0000000..8219f5e --- /dev/null +++ b/grampsweb/templates/hpa.yaml @@ -0,0 +1,32 @@ +{{- if .Values.autoscaling.enabled }} +apiVersion: autoscaling/v2 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "grampsweb.fullname" . }} + labels: + {{- include "grampsweb.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "grampsweb.fullname" . }} + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + target: + type: Utilization + averageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + target: + type: Utilization + averageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/grampsweb/templates/ingress.yaml b/grampsweb/templates/ingress.yaml new file mode 100644 index 0000000..337f978 --- /dev/null +++ b/grampsweb/templates/ingress.yaml @@ -0,0 +1,61 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "grampsweb.fullname" . -}} +{{- $svcPort := .Values.service.port -}} +{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }} + {{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }} + {{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}} + {{- end }} +{{- end }} +{{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1 +{{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1beta1 +{{- else -}} +apiVersion: extensions/v1beta1 +{{- end }} +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + {{- include "grampsweb.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + {{- if and .Values.ingress.className (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion) }} + ingressClassName: {{ .Values.ingress.className }} + {{- end }} + {{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} + {{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - path: {{ .path }} + {{- if and .pathType (semverCompare ">=1.18-0" $.Capabilities.KubeVersion.GitVersion) }} + pathType: {{ .pathType }} + {{- end }} + backend: + {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }} + service: + name: {{ $fullName }} + port: + number: {{ $svcPort }} + {{- else }} + serviceName: {{ $fullName }} + servicePort: {{ $svcPort }} + {{- end }} + {{- end }} + {{- end }} +{{- end }} diff --git a/grampsweb/templates/pvc.yaml b/grampsweb/templates/pvc.yaml new file mode 100644 index 0000000..f9a8635 --- /dev/null +++ b/grampsweb/templates/pvc.yaml @@ -0,0 +1,25 @@ +{{- if and .Values.persistence.enabled ( not .Values.persistence.existingClaim) -}} +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: {{ template "grampsweb.fullname" . }} + labels: + {{- include "grampsweb.labels" . | nindent 4 }} + {{- with .Values.persistence.annotations }} + annotations: + {{ toYaml . | indent 4 }} + {{- end }} +spec: + accessModes: + - {{ .Values.persistence.accessMode | quote }} + resources: + requests: + storage: {{ .Values.persistence.size | quote }} + {{- with .Values.persistence.storageClass }} + {{- if (eq "-" .) }} + storageClassName: "" + {{- else }} + storageClassName: {{ . | quote }} + {{- end }} + {{- end }} +{{- end -}} diff --git a/grampsweb/templates/secret.yaml b/grampsweb/templates/secret.yaml new file mode 100644 index 0000000..0bfd76f --- /dev/null +++ b/grampsweb/templates/secret.yaml @@ -0,0 +1,29 @@ +--- +apiVersion: v1 +kind: Secret +metadata: + name: {{ include "grampsweb.fullname" . }} + labels: + {{- include "grampsweb.labels" . | nindent 4 }} +data: + {{- with .Values.gramps.mediaBaseDir }} + MEDIA_BASE_DIR: {{ . | b64enc }} + {{- end }} + {{- with .Values.gramps.mail.host }} + EMAIL_HOST: {{ toYaml . | b64enc }} + {{- end }} + {{- with .Values.gramps.mail.port }} + EMAIL_PORT: {{ toYaml . | b64enc }} + {{- end }} + {{- with .Values.gramps.mail.username }} + EMAIL_HOST_USER: {{ toYaml . | b64enc }} + {{- end }} + {{- with .Values.gramps.mail.password }} + EMAIL_HOST_PASSWORD: {{ toYaml . | b64enc }} + {{- end }} + {{- with .Values.gramps.mail.useTLS }} + EMAIL_USE_TLS: {{ toYaml . | b64enc }} + {{- end }} + {{- with .Values.gramps.mail.from }} + DEFAULT_FROM_EMAIL: {{ toYaml . | b64enc }} + {{- end }} diff --git a/grampsweb/templates/service.yaml b/grampsweb/templates/service.yaml new file mode 100644 index 0000000..b181fe9 --- /dev/null +++ b/grampsweb/templates/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "grampsweb.fullname" . }} + labels: + {{- include "grampsweb.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "grampsweb.selectorLabels" . | nindent 4 }} diff --git a/grampsweb/templates/serviceaccount.yaml b/grampsweb/templates/serviceaccount.yaml new file mode 100644 index 0000000..3bc1249 --- /dev/null +++ b/grampsweb/templates/serviceaccount.yaml @@ -0,0 +1,13 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "grampsweb.serviceAccountName" . }} + labels: + {{- include "grampsweb.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +automountServiceAccountToken: {{ .Values.serviceAccount.automount }} +{{- end }} diff --git a/grampsweb/templates/tests/test-connection.yaml b/grampsweb/templates/tests/test-connection.yaml new file mode 100644 index 0000000..756f11d --- /dev/null +++ b/grampsweb/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "grampsweb.fullname" . }}-test-connection" + labels: + {{- include "grampsweb.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "grampsweb.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never diff --git a/grampsweb/values.yaml b/grampsweb/values.yaml new file mode 100644 index 0000000..8cc298b --- /dev/null +++ b/grampsweb/values.yaml @@ -0,0 +1,141 @@ +# Default values for grampsweb. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + registry: ghcr.io + repository: gramps-project/grampsweb + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +gramps: + tree: "Gramps Web" + baseURL: "https://gramps.example.org" + mail: + # -- SMTP server host (e.g. for sending password reset e-mails) + host: + # -- SMTP server port. + port: 465 + # -- SMTP server username + username: + # -- SMTP server password + password: + # -- Boolean, whether to use TLS for sending e-mails. Defaults to true. When using STARTTLS, set this to false and use a port different from 25. + useTLS: true + # -- "From" address for automated e-mails + from: + +## Enable persistence using Persistent Volume Claims +## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/ +## +persistence: + enabled: true + annotations: {} + # -- Persistent Volume Storage Class + # If defined, storageClassName: + # If set to "-", storageClassName: "", which disables dynamic provisioning + # If undefined (the default) or set to null, no storageClassName spec is + # set, choosing the default provisioner. (gp2 on AWS, standard on + # GKE, AWS & OpenStack) + # + storageClass: + + # -- A manually managed Persistent Volume and Claim + # Requires persistence.enabled: true + # If defined, PVC must be created manually before volume will be bound + existingClaim: + + # -- Do not create an PVC, direct use hostPath in Pod + hostPath: + accessMode: ReadWriteOnce + size: 5Gi + +serviceAccount: + # Specifies whether a service account should be created + create: true + # Automatically mount a ServiceAccount's API credentials? + automount: true + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: "" + +podAnnotations: {} +podLabels: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 5000 + +ingress: + enabled: false + className: "" + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + paths: + - path: / + pathType: ImplementationSpecific + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 100 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +# Additional volumes on the output Deployment definition. +volumes: [] +# - name: foo +# secret: +# secretName: mysecret +# optional: false + +# Additional volumeMounts on the output Deployment definition. +volumeMounts: [] +# - name: foo +# mountPath: "/etc/foo" +# readOnly: true + +nodeSelector: {} + +tolerations: [] + +affinity: {}