2018-01-06 15:53:24 +00:00
|
|
|
kind: PersistentVolumeClaim
|
2018-01-11 10:08:20 +00:00
|
|
|
apiVersion: v1
|
2018-01-06 15:53:24 +00:00
|
|
|
metadata:
|
2018-05-04 18:00:00 +00:00
|
|
|
name: standard-tusd
|
2018-01-11 11:03:14 +00:00
|
|
|
namespace: tus
|
2018-01-06 15:53:24 +00:00
|
|
|
spec:
|
|
|
|
accessModes:
|
2018-04-25 14:00:23 +00:00
|
|
|
- ReadWriteOnce
|
2018-05-04 18:00:00 +00:00
|
|
|
storageClassName: "standard"
|
2018-01-06 15:53:24 +00:00
|
|
|
resources:
|
|
|
|
requests:
|
2018-01-11 23:58:59 +00:00
|
|
|
storage: 20Gi
|
2018-01-06 15:53:24 +00:00
|
|
|
---
|
|
|
|
apiVersion: extensions/v1beta1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: tusd
|
|
|
|
namespace: tus
|
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
strategy:
|
2018-04-25 14:00:23 +00:00
|
|
|
type: Recreate
|
2018-01-06 15:53:24 +00:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: tusd
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- image: docker.io/tusproject/tusd:latest
|
|
|
|
imagePullPolicy: Always
|
2018-03-17 10:18:58 +00:00
|
|
|
args: ["-port=8080","-behind-proxy","-max-size=20000000000"]
|
2018-01-06 15:53:24 +00:00
|
|
|
name: tusd
|
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
memory: "2Gi"
|
|
|
|
requests:
|
|
|
|
memory: "1Gi"
|
|
|
|
ports:
|
2018-02-16 13:46:20 +00:00
|
|
|
- name: tusd-web
|
|
|
|
containerPort: 8080
|
2018-01-06 15:53:24 +00:00
|
|
|
securityContext:
|
2018-01-11 23:58:59 +00:00
|
|
|
runAsUser: 0
|
|
|
|
fsGroup: 0
|
2018-01-06 15:53:24 +00:00
|
|
|
volumeMounts:
|
|
|
|
- name: tusd-disk
|
|
|
|
mountPath: /srv/tusd-data
|
|
|
|
volumes:
|
|
|
|
- name: tusd-disk
|
|
|
|
persistentVolumeClaim:
|
2018-05-04 18:00:00 +00:00
|
|
|
claimName: standard-tusd
|
2018-01-06 15:53:24 +00:00
|
|
|
---
|
|
|
|
apiVersion: v1
|
|
|
|
kind: Service
|
|
|
|
metadata:
|
|
|
|
name: tusd
|
|
|
|
namespace: tus
|
|
|
|
spec:
|
|
|
|
ports:
|
2018-02-16 13:46:20 +00:00
|
|
|
- name: tusd-web
|
|
|
|
port: 80
|
2018-01-06 15:53:24 +00:00
|
|
|
targetPort: 8080
|
|
|
|
protocol: TCP
|
|
|
|
selector:
|
|
|
|
app: tusd
|
|
|
|
---
|
|
|
|
apiVersion: extensions/v1beta1
|
|
|
|
kind: Ingress
|
|
|
|
metadata:
|
|
|
|
name: tusd
|
|
|
|
namespace: tus
|
|
|
|
annotations:
|
2018-07-07 17:07:33 +00:00
|
|
|
certmanager.k8s.io/cluster-issuer: "letsencrypt-prod"
|
|
|
|
certmanager.k8s.io/acme-challenge-type: "http01"
|
2018-01-06 15:53:24 +00:00
|
|
|
kubernetes.io/tls-acme: "true"
|
|
|
|
kubernetes.io/ingress.class: "nginx"
|
2018-01-08 07:21:35 +00:00
|
|
|
nginx.ingress.kubernetes.io/proxy-body-size: 0m
|
2018-01-06 15:53:24 +00:00
|
|
|
nginx.ingress.kubernetes.io/proxy-connect-timeout: "300"
|
|
|
|
nginx.ingress.kubernetes.io/proxy-read-timeout: "300"
|
|
|
|
nginx.ingress.kubernetes.io/proxy-request-buffering: "off"
|
|
|
|
nginx.ingress.kubernetes.io/proxy-send-timeout: "300"
|
|
|
|
spec:
|
|
|
|
tls:
|
|
|
|
- hosts:
|
|
|
|
- tusd.tus.io
|
|
|
|
secretName: tusd-tls
|
|
|
|
- hosts:
|
|
|
|
- master.tus.io
|
|
|
|
secretName: master-tls
|
|
|
|
rules:
|
|
|
|
- host: tusd.tus.io
|
|
|
|
http:
|
|
|
|
paths:
|
|
|
|
- path: /
|
|
|
|
backend:
|
|
|
|
serviceName: tusd
|
|
|
|
servicePort: 80
|
|
|
|
- host: master.tus.io
|
|
|
|
http:
|
|
|
|
paths:
|
|
|
|
- path: /
|
|
|
|
backend:
|
|
|
|
serviceName: tusd
|
|
|
|
servicePort: 80
|
|
|
|
---
|
|
|
|
apiVersion: autoscaling/v1
|
|
|
|
kind: HorizontalPodAutoscaler
|
|
|
|
metadata:
|
|
|
|
name: tusd
|
|
|
|
namespace: tus
|
|
|
|
spec:
|
|
|
|
scaleTargetRef:
|
|
|
|
apiVersion: apps/v1beta1
|
|
|
|
kind: Deployment
|
|
|
|
name: tusd
|
|
|
|
minReplicas: 1
|
|
|
|
maxReplicas: 5
|
2018-07-07 17:00:10 +00:00
|
|
|
metrics:
|
|
|
|
- type: Resource
|
|
|
|
resource:
|
|
|
|
name: cpu
|
|
|
|
targetAverageUtilization: 80
|
|
|
|
- type: Resource
|
|
|
|
resource:
|
|
|
|
name: memory
|
|
|
|
targetAverageValue: 1800Mi
|
2018-06-11 00:15:53 +00:00
|
|
|
---
|
|
|
|
apiVersion: batch/v1beta1
|
|
|
|
kind: CronJob
|
|
|
|
metadata:
|
|
|
|
name: cleaning-job
|
|
|
|
namespace: tus
|
|
|
|
spec:
|
|
|
|
schedule: "* * */1 * *"
|
|
|
|
jobTemplate:
|
|
|
|
spec:
|
|
|
|
template:
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: jobspod
|
|
|
|
image: gcr.io/transloadit-kubes/jobspod
|
|
|
|
command: ["/bin/bash", "-c"]
|
2018-06-11 20:25:10 +00:00
|
|
|
args: [ "kubectl exec --namespace tus $(kubectl get pods --namespace tus -l app=tusd -o go-template --template '{{range .items}}{{.metadata.name}}{{\"\\n\"}}{{end}}') -- /bin/sh -c \"find . -type f -mmin +1440 -print0 | xargs -n 200 -r -0 rm || true\""]
|
2018-06-11 00:15:53 +00:00
|
|
|
restartPolicy: OnFailure
|