37 lines
904 B
YAML
37 lines
904 B
YAML
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:
|
|
- name: hydra-dispatcher
|
|
image: reg.cadoles.com/cadoles/hydra-dispatcher-v1:v0.0.0-159-gd91e77b
|
|
envFrom:
|
|
- configMapRef:
|
|
name: hydra-dispatcher-env
|
|
volumeMounts:
|
|
- mountPath: /var/www/config/hydra
|
|
name: hydra-dispatcher-apps
|
|
ports:
|
|
- containerPort: 80
|
|
resources: {}
|
|
restartPolicy: Always
|
|
volumes:
|
|
- name: hydra-dispatcher-apps
|
|
configMap:
|
|
name: hydra-dispatcher-apps
|
|
|