38 lines
858 B
YAML
38 lines
858 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: argus
|
||
|
namespace: argus
|
||
|
labels:
|
||
|
app: argus
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: argus
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: argus
|
||
|
spec:
|
||
|
serviceAccountName: argus
|
||
|
containers:
|
||
|
- name: argus
|
||
|
image: bv11-cr01.bessems.eu/proxy/releaseargus/argus:0.13.3
|
||
|
ports:
|
||
|
- name: web
|
||
|
containerPort: 8080
|
||
|
volumeMounts:
|
||
|
- name: configmap-argus-conf
|
||
|
mountPath: /app/config.yml
|
||
|
subPath: config.yml
|
||
|
- name: flexvolsmb-argus-data
|
||
|
mountPath: /app/data
|
||
|
volumes:
|
||
|
- name: configmap-argus-conf
|
||
|
configMap:
|
||
|
name: configmap-argus-conf
|
||
|
- name: flexvolsmb-argus-data
|
||
|
persistentVolumeClaim:
|
||
|
claimName: flexvolsmb-argus-data
|