2023-01-25 20:27:27 +01:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
io.kompose.service: hydra-dispatcher
|
|
|
|
name: hydra-dispatcher
|
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
io.kompose.service: hydra-dispatcher
|
|
|
|
strategy:
|
|
|
|
type: Recreate
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
io.kompose.service: hydra-dispatcher
|
|
|
|
spec:
|
|
|
|
containers:
|
2023-03-17 11:05:23 +01:00
|
|
|
- name: hydra-dispatcher
|
2023-06-28 10:14:26 +02:00
|
|
|
image: reg.cadoles.com/cadoles/hydra-dispatcher:808658d-symfony-containers
|
2023-03-17 11:05:23 +01:00
|
|
|
envFrom:
|
|
|
|
- configMapRef:
|
|
|
|
name: hydra-dispatcher-env
|
|
|
|
volumeMounts:
|
|
|
|
- mountPath: /var/www/config/hydra
|
|
|
|
name: hydra-dispatcher-apps
|
|
|
|
ports:
|
|
|
|
- containerPort: 80
|
|
|
|
resources: {}
|
2023-01-25 20:27:27 +01:00
|
|
|
restartPolicy: Always
|
2023-02-01 11:30:41 +01:00
|
|
|
volumes:
|
2023-03-17 11:05:23 +01:00
|
|
|
- name: hydra-dispatcher-apps
|
|
|
|
configMap:
|
|
|
|
name: hydra-dispatcher-apps
|
|
|
|
|