diff --git a/immich-argocd-apps/.helmignore b/immich-argocd-apps/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/immich-argocd-apps/.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/immich-argocd-apps/Chart.yaml b/immich-argocd-apps/Chart.yaml new file mode 100644 index 0000000..d00d150 --- /dev/null +++ b/immich-argocd-apps/Chart.yaml @@ -0,0 +1,5 @@ +apiVersion: v2 +name: immich-argocd-apps +description: A Helm chart for deploying Immich as an ArgoCD app +type: application +version: 0.1.0 diff --git a/immich-argocd-apps/templates/_helpers.tpl b/immich-argocd-apps/templates/_helpers.tpl new file mode 100644 index 0000000..6a8c3d9 --- /dev/null +++ b/immich-argocd-apps/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "immich-argocd-apps.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 "immich-argocd-apps.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 "immich-argocd-apps.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "immich-argocd-apps.labels" -}} +helm.sh/chart: {{ include "immich-argocd-apps.chart" . }} +{{ include "immich-argocd-apps.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "immich-argocd-apps.selectorLabels" -}} +app.kubernetes.io/name: {{ include "immich-argocd-apps.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "immich-argocd-apps.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "immich-argocd-apps.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/immich-argocd-apps/templates/immich-requirements-app.yaml b/immich-argocd-apps/templates/immich-requirements-app.yaml new file mode 100644 index 0000000..a7259a9 --- /dev/null +++ b/immich-argocd-apps/templates/immich-requirements-app.yaml @@ -0,0 +1,27 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: immich-requirements + namespace: argocd # Ensure this is the namespace where Argo CD is installed + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: default + source: + repoURL: "https://git.blarre.net/thomas/helm-charts.git" + targetRevision: HEAD + path: immich-argocd-requirements + helm: + valuesObject: + mainNamespace: {{ .Values.mainNamespace }} + destination: + server: https://kubernetes.default.svc # Targeting the current Kubernetes cluster + namespace: {{ .Values.mainNamespace }} + syncPolicy: + automated: + prune: true # Automatically remove resources no longer in the repo + selfHeal: true # Automatically self-heal when drift is detected + syncOptions: + - ApplyOutOfSyncOnly=true + - ServerSideApply=true + - CreateNamespace=true diff --git a/immich-argocd-apps/values.yaml b/immich-argocd-apps/values.yaml new file mode 100644 index 0000000..afb94e6 --- /dev/null +++ b/immich-argocd-apps/values.yaml @@ -0,0 +1 @@ +mainNamespace: immich