mirror of
https://github.com/opf/openproject-deploy.git
synced 2026-02-14 16:59:51 +00:00
33 lines
717 B
YAML
Executable File
33 lines
717 B
YAML
Executable File
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
openproject.service: proxy
|
|
name: proxy
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
openproject.service: proxy
|
|
strategy: {}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
openproject.network/frontend: "true"
|
|
openproject.service: proxy
|
|
spec:
|
|
containers:
|
|
- args:
|
|
- ./docker/prod/proxy
|
|
env:
|
|
- name: APP_HOST
|
|
value: $(WEB_SERVICE_HOST)
|
|
- name: OPENPROJECT_RAILS__RELATIVE__URL__ROOT
|
|
image: openproject/community:12
|
|
name: proxy
|
|
ports:
|
|
- containerPort: 80
|
|
resources: {}
|
|
restartPolicy: Always
|
|
status: {}
|