Upgraded test env with Kubernetes support
[nonrtric.git] / test / simulator-group / ecs / app.yaml
1 apiVersion: apps/v1
2 kind: Deployment
3 metadata:
4   name: $ECS_APP_NAME
5   namespace: $KUBE_NONRTRIC_NAMESPACE
6   labels:
7     run: $ECS_APP_NAME
8     autotest: ECS
9 spec:
10   replicas: 1
11   selector:
12     matchLabels:
13       run: $ECS_APP_NAME
14   template:
15     metadata:
16       labels:
17         run: $ECS_APP_NAME
18         autotest: ECS
19     spec:
20       containers:
21       - name: $ECS_APP_NAME
22         image: $ECS_IMAGE
23         imagePullPolicy: Never
24         ports:
25         - name: http
26           containerPort: $ECS_INTERNAL_PORT
27         - name: https
28           containerPort: $ECS_INTERNAL_SECURE_PORT
29         volumeMounts:
30         - mountPath: $ECS_CONFIG_MOUNT_PATH
31           name: ecs-conf-name
32         volumeMounts:
33         - mountPath: $ECS_CONTAINER_MNT_DIR
34           name: ecs-data-name
35       volumes:
36       - configMap:
37           defaultMode: 420
38           name: $ECS_CONFIG_CONFIGMAP_NAME
39         name: ecs-conf-name
40       - persistentVolumeClaim:
41           claimName: $ECS_DATA_CONFIGMAP_NAME
42         name: ecs-data-name
43