Compare commits
No commits in common. "27da58d5251ce5b165938c082f4f77107177420a" and "4f91fc0f0a10a5e50613b6c72cbb4998e90a09a7" have entirely different histories.
27da58d525
...
4f91fc0f0a
6 changed files with 0 additions and 158 deletions
|
@ -1,11 +0,0 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
labels:
|
||||
app: app
|
||||
name: app
|
||||
spec:
|
||||
ports:
|
||||
- port: 8334
|
||||
selector:
|
||||
app: app
|
|
@ -1,84 +0,0 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
labels:
|
||||
app: app
|
||||
name: app
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: app
|
||||
template:
|
||||
metadata:
|
||||
creationTimestamp: null
|
||||
labels:
|
||||
app: app
|
||||
spec:
|
||||
initContainers:
|
||||
- image: busybox
|
||||
command:
|
||||
- /bin/sh
|
||||
- -c
|
||||
- mkdir -p /app/data/state/log ; chmod -R 777 /app/data/state
|
||||
name: mkdirs
|
||||
volumeMounts:
|
||||
- name: data
|
||||
mountPath: /app/data/state
|
||||
containers:
|
||||
- env:
|
||||
- name: APPLICATION_URL
|
||||
value: uploader.martyn.berlin
|
||||
- name: CANARY
|
||||
value: "true"
|
||||
- name: OFFICE_URL
|
||||
value: http://wopi:9980
|
||||
- name: OFFICE_FILESTASH
|
||||
value: http://app:8334
|
||||
- name: OFFICE_REWRITE_URL
|
||||
value: http://127.0.0.1:9980
|
||||
image: machines/filestash:latest
|
||||
name: filestash
|
||||
ports:
|
||||
- containerPort: 8334
|
||||
volumeMounts:
|
||||
- name: data
|
||||
mountPath: /app/data/state
|
||||
volumes:
|
||||
- name: data
|
||||
persistentVolumeClaim:
|
||||
claimName: filestash-data
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
labels:
|
||||
app: wopi
|
||||
name: wopi
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: wopi
|
||||
template:
|
||||
metadata:
|
||||
creationTimestamp: null
|
||||
labels:
|
||||
app: wopi
|
||||
spec:
|
||||
containers:
|
||||
- command:
|
||||
- /bin/bash
|
||||
- -c
|
||||
- curl -o /usr/share/coolwsd/browser/dist/branding-desktop.css https://gist.githubusercontent.com/mickael-kerjean/bc1f57cd312cf04731d30185cc4e7ba2/raw/d706dcdf23c21441e5af289d871b33defc2770ea/destop.css ; /bin/su -s /bin/bash -c '/start-collabora-online.sh' cool
|
||||
env:
|
||||
- name: extra_params
|
||||
value: "--o:ssl.enable=false"
|
||||
- name: aliasgroup1
|
||||
value: "https://.*:443"
|
||||
image: collabora/code:24.04.10.2.1
|
||||
name: collabora
|
||||
ports:
|
||||
- containerPort: 9980
|
||||
securityContext:
|
||||
runAsUser: 0
|
|
@ -1,27 +0,0 @@
|
|||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: letsencrypt
|
||||
external-dns.alpha.kubernetes.io/target: armnleg.martyn.berlin
|
||||
nginx.ingress.kubernetes.io/auth-signin: https://homeauth.martyn.berlin/oauth2/start?rd=https://$host$escaped_request_uri
|
||||
nginx.ingress.kubernetes.io/auth-url: https://homeauth.martyn.berlin/oauth2/auth
|
||||
labels:
|
||||
app.kubernetes.io/name: uploader
|
||||
name: uploader
|
||||
spec:
|
||||
ingressClassName: nginx
|
||||
rules:
|
||||
- host: uploader.martyn.berlin
|
||||
http:
|
||||
paths:
|
||||
- backend:
|
||||
service:
|
||||
name: app
|
||||
port:
|
||||
number: 8334
|
||||
path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- hosts:
|
||||
- uploader.martyn.berlin
|
|
@ -1,11 +0,0 @@
|
|||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: filestash-data
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 10Gi
|
||||
storageClassName: longhorn-fast
|
|
@ -1,11 +0,0 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
labels:
|
||||
app: wopi
|
||||
name: wopi
|
||||
spec:
|
||||
ports:
|
||||
- port: 9980
|
||||
selector:
|
||||
app: wopi
|
|
@ -1,14 +0,0 @@
|
|||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: filestash
|
||||
namespace: argocd
|
||||
spec:
|
||||
destination:
|
||||
namespace: filestash
|
||||
server: https://kubernetes.default.svc
|
||||
project: apps
|
||||
source:
|
||||
path: apps-kustomized/filestash
|
||||
repoURL: http://forgejo.git.svc.cluster.local/martyn/infra4talos
|
||||
targetRevision: HEAD
|
Loading…
Add table
Reference in a new issue