Added grist

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
Marcus Noble 2022-03-04 18:28:48 +00:00
parent 380713229c
commit 92de303130
Signed by: AverageMarcus
GPG Key ID: B8F2DB8A7AEBAF78
2 changed files with 121 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,97 @@
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"
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