Upgraded test env with Kubernetes support
[nonrtric.git] / test / simulator-group / control_panel / app.yaml
1 apiVersion: apps/v1
2 kind: Deployment
3 metadata:
4   name: $CONTROL_PANEL_APP_NAME
5   namespace: $KUBE_NONRTRIC_NAMESPACE
6   labels:
7     run: $CONTROL_PANEL_APP_NAME
8     autotest: CP
9 spec:
10   replicas: 1
11   selector:
12     matchLabels:
13       run: $CONTROL_PANEL_APP_NAME
14   template:
15     metadata:
16       labels:
17         run: $CONTROL_PANEL_APP_NAME
18         autotest: CP
19     spec:
20       containers:
21       - name: $CONTROL_PANEL_APP_NAME
22         image: $CONTROL_PANEL_IMAGE
23         imagePullPolicy: Never
24         ports:
25         - name: http
26           containerPort: $CONTROL_PANEL_INTERNAL_PORT
27         - name: https
28           containerPort: $CONTROL_PANEL_INTERNAL_SECURE_PORT
29         volumeMounts:
30         - mountPath: $CONTROL_PANEL_CONFIG_MOUNT_PATH/$CONTROL_PANEL_CONFIG_FILE
31           subPath: $CONTROL_PANEL_CONFIG_FILE
32           name: cp-conf-name
33       volumes:
34       - configMap:
35           defaultMode: 420
36           name: $CP_CONFIG_CONFIGMAP_NAME
37         name: cp-conf-name