You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
2.7 KiB
YAML
97 lines
2.7 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: cvat-backend
|
|
namespace: cvat
|
|
labels:
|
|
app: cvat-app
|
|
tier: backend
|
|
spec:
|
|
replicas: 1
|
|
strategy:
|
|
type: Recreate
|
|
selector:
|
|
matchLabels:
|
|
app: cvat-app
|
|
tier: backend
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: cvat-app
|
|
tier: backend
|
|
spec:
|
|
containers:
|
|
- name: cvat-backend-app-container
|
|
image: openvino/cvat_server:v1.2.0
|
|
imagePullPolicy: Always
|
|
resources:
|
|
requests:
|
|
cpu: 10m
|
|
memory: 100Mi
|
|
env:
|
|
- name: DJANGO_MODWSGI_EXTRA_ARGS
|
|
value: ""
|
|
- name: UI_PORT
|
|
value: "80"
|
|
- name: UI_HOST
|
|
value: "cvat-frontend-service"
|
|
- name: ALLOWED_HOSTS
|
|
value: "*"
|
|
- name: CVAT_REDIS_HOST
|
|
value: "cvat-redis-service"
|
|
- name: CVAT_POSTGRES_HOST
|
|
value: "cvat-postgres-service"
|
|
- name: CVAT_POSTGRES_USER
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: cvat-postgres-secret
|
|
key: POSTGRES_USER
|
|
- name: CVAT_POSTGRES_DBNAME
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: cvat-postgres-secret
|
|
key: POSTGRES_DB
|
|
- name: CVAT_POSTGRES_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: cvat-postgres-secret
|
|
key: POSTGRES_PASSWORD
|
|
ports:
|
|
- containerPort: 8080
|
|
volumeMounts:
|
|
- mountPath: /home/django/data
|
|
name: cvat-backend-data
|
|
subPath: data
|
|
- mountPath: /home/django/keys
|
|
name: cvat-backend-data
|
|
subPath: keys
|
|
- mountPath: /home/django/logs
|
|
name: cvat-backend-data
|
|
subPath: logs
|
|
- mountPath: /home/django/models
|
|
name: cvat-backend-data
|
|
subPath: models
|
|
initContainers:
|
|
- name: user-data-permission-fix
|
|
image: busybox
|
|
command: ["/bin/chmod", "-R", "777", "/home/django"]
|
|
volumeMounts:
|
|
- mountPath: /home/django/data
|
|
name: cvat-backend-data
|
|
subPath: data
|
|
- mountPath: /home/django/keys
|
|
name: cvat-backend-data
|
|
subPath: keys
|
|
- mountPath: /home/django/logs
|
|
name: cvat-backend-data
|
|
subPath: logs
|
|
- mountPath: /home/django/models
|
|
name: cvat-backend-data
|
|
subPath: models
|
|
volumes:
|
|
- name: cvat-backend-data
|
|
persistentVolumeClaim:
|
|
claimName: cvat-backend-data
|
|
imagePullSecrets:
|
|
- name: gitlab-registry
|