Removed gotosocial

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
Marcus Noble 2023-02-04 05:37:24 +00:00
parent 665836a4a3
commit 337577f5a0
Signed by: AverageMarcus
GPG Key ID: B8F2DB8A7AEBAF78
2 changed files with 0 additions and 102 deletions

View File

@ -1,28 +0,0 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: gotosocial
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: cluster.fun
destination:
namespace: gotosocial
name: cluster-fun (scaleway)
source:
path: manifests/gotosocial
repoURL: "https://git.cluster.fun/AverageMarcus/cluster.fun.git"
targetRevision: HEAD
syncPolicy:
automated: {}
syncOptions:
- CreateNamespace=true
ignoreDifferences:
- kind: Secret
jsonPointers:
- /data
- group: apps
kind: Deployment
jqPathExpressions:
- .spec.template.spec.containers[]?.image

View File

@ -1,74 +0,0 @@
apiVersion: v1
kind: Service
metadata:
name: gotosocial
namespace: gotosocial
spec:
type: ClusterIP
ports:
- port: 80
targetPort: web
name: web
selector:
app: gotosocial
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: gotosocial
namespace: gotosocial
spec:
replicas: 1
selector:
matchLabels:
app: gotosocial
template:
metadata:
labels:
app: gotosocial
spec:
containers:
- name: web
image: superseriousbusiness/gotosocial:0.6.0
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
name: web
env:
- name: GTS_HOST
value: gotosocial.cluster.fun
- name: GTS_DB_TYPE
value: sqlite
- name: GTS_DB_ADDRESS
value: /gotosocial/storage/sqlite.db
- name: GTS_LETSENCRYPT_ENABLED
value: "false"
- name: GTS_LETSENCRYPT_EMAIL_ADDRESS
value: ""
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: gotosocial
namespace: gotosocial
annotations:
cert-manager.io/cluster-issuer: letsencrypt
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
spec:
ingressClassName: nginx
tls:
- hosts:
- gotosocial.cluster.fun
secretName: gotosocial-ingress
rules:
- host: gotosocial.cluster.fun
http:
paths:
- path: /
pathType: ImplementationSpecific
backend:
service:
name: gotosocial
port:
number: 80