tusd/.infra/kube/tusd-kube.yaml

127 lines
2.9 KiB
YAML
Raw Normal View History

2018-01-06 15:53:24 +00:00
kind: PersistentVolumeClaim
apiVersion: v1
2018-01-06 15:53:24 +00:00
metadata:
name: nfs-tusd
2018-01-11 11:03:14 +00:00
namespace: tus
2018-01-06 15:53:24 +00:00
spec:
accessModes:
- ReadWriteMany
storageClassName: ""
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
minReadySeconds: 10
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 2
2018-01-06 15:53:24 +00:00
maxUnavailable: 0
template:
metadata:
labels:
app: tusd
spec:
containers:
- image: docker.io/tusproject/tusd:latest
imagePullPolicy: Always
args: ["-port=8080","-behind-proxy","-max-size=1000000000"]
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:
claimName: nfs-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:
kubernetes.io/tls-acme: "true"
kubernetes.io/ingress.class: "nginx"
2018-02-16 13:46:20 +00:00
nginx.ingress.kubernetes.io/configuration-snippet: |
# Security: Don't allow people to upload html and then have browsers parse it
if ($uri ~ \.(?!(jpe?g|gif|png|webp|webm|mp4|mpg|avi|3gp|wav|mp3))$) {
add_header Content-Type application/octet-stream;
add_header Content-Disposition "attachment; filename=$basename";
add_header X-Download-Options noopen;
add_header X-Content-Type-Options nosniff;
}
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
targetCPUUtilizationPercentage: 90