From 0766e09cf2516fdfc110fbc32f1b03d0126384bc Mon Sep 17 00:00:00 2001 From: Jim Nicholson Date: Mon, 7 Mar 2022 22:21:56 -0800 Subject: [PATCH] Add in helm chart for wiki.js --- applications/wiki.js/helmrelease.yaml | 34 +++++++++++++++++++ {wiki.js => applications/wiki.js}/source.yaml | 0 2 files changed, 34 insertions(+) create mode 100644 applications/wiki.js/helmrelease.yaml rename {wiki.js => applications/wiki.js}/source.yaml (100%) diff --git a/applications/wiki.js/helmrelease.yaml b/applications/wiki.js/helmrelease.yaml new file mode 100644 index 0000000..238def8 --- /dev/null +++ b/applications/wiki.js/helmrelease.yaml @@ -0,0 +1,34 @@ +--- +apiVersion: helm.toolkit.fluxcd.io/v2beta1 +kind: HelmRelease +metadata: + name: wiki-js + namespace: flux-system +spec: + chart: + spec: + chart: wiki + sourceRef: + kind: HelmRepository + name: requarks + namespace: flux-system + install: + createNamespace: true + interval: 1m0s + targetNamespace: wiki + timeout: 10m0s + values: + postgresql: + persistence: + storageClass: longhorn + ingress: + hosts: + - wiki.thejimnicholson.com + tls: + - hosts: + - wiki.thejimnicholson.com + secretName: wiki-thejimnicholson-com + annotations: + kubernetes.io/ingress.class: "traefik" + traefik.ingress.kubernetes.io/redirect-entry-point: https + cert-manager.io/cluster-issuer: dns-clusterissuer \ No newline at end of file diff --git a/wiki.js/source.yaml b/applications/wiki.js/source.yaml similarity index 100% rename from wiki.js/source.yaml rename to applications/wiki.js/source.yaml