From 6af90f18254f9093d4118a032dccbd357324c380 Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Fri, 4 Mar 2022 18:28:48 +0000 Subject: [PATCH] Added grist Signed-off-by: Marcus Noble --- manifests/_apps/grist.yaml | 24 +++++++++ manifests/grist/grist.yaml | 99 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 123 insertions(+) create mode 100644 manifests/_apps/grist.yaml create mode 100644 manifests/grist/grist.yaml diff --git a/manifests/_apps/grist.yaml b/manifests/_apps/grist.yaml new file mode 100644 index 0000000..37bd5c3 --- /dev/null +++ b/manifests/_apps/grist.yaml @@ -0,0 +1,24 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: grist + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: cluster.fun + destination: + namespace: grist + name: cluster-fun (scaleway) + source: + path: manifests/grist + repoURL: "https://git.cluster.fun/AverageMarcus/cluster.fun.git" + targetRevision: HEAD + syncPolicy: + automated: {} + syncOptions: + - CreateNamespace=true + ignoreDifferences: + - kind: Secret + jsonPointers: + - /data diff --git a/manifests/grist/grist.yaml b/manifests/grist/grist.yaml new file mode 100644 index 0000000..57190f3 --- /dev/null +++ b/manifests/grist/grist.yaml @@ -0,0 +1,99 @@ +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: grist + namespace: grist +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 5Gi +--- +apiVersion: v1 +kind: Service +metadata: + name: grist + namespace: grist +spec: + type: ClusterIP + ports: + - port: 80 + targetPort: web + name: web + selector: + app: grist +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: grist + namespace: grist + labels: + app: grist +spec: + replicas: 1 + selector: + matchLabels: + app: grist + template: + metadata: + labels: + app: grist + spec: + containers: + - name: web + image: gristlabs/grist:latest + imagePullPolicy: Always + ports: + - containerPort: 8484 + name: web + env: + - name: APP_HOME_URL + value: "https://grist.cluster.fun/" + - name: APP_DOC_URL + value: "https://grist.cluster.fun/" + - name: GRIST_MAX_UPLOAD_ATTACHMENT_MB + value: "0" + - name: GRIST_MAX_UPLOAD_IMPORT_MB + value: "0" + - name: PORT + value: "8484" + - name: DEBUG + value: "1" + - name: GRIST_SINGLE_ORG + value: "docs" + - name: GRIST_DEFAULT_EMAIL + value: "grist@marcusnoble.co.uk" + volumeMounts: + - name: storage + mountPath: /persist + volumes: + - name: storage + persistentVolumeClaim: + claimName: grist +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: grist + namespace: grist + annotations: + cert-manager.io/cluster-issuer: letsencrypt + nginx.ingress.kubernetes.io/force-ssl-redirect: "true" +spec: + tls: + - hosts: + - grist.cluster.fun + secretName: grist-ingress + rules: + - host: grist.cluster.fun + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + service: + name: grist + port: + number: 80