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: releaseargus/argus:0.15.2 args: - -config.file=/app/config/config.yml ports: - name: web containerPort: 8080 volumeMounts: - name: flexvolsmb-argus-config mountPath: /app/config - name: flexvolsmb-argus-data mountPath: /app/data volumes: - name: flexvolsmb-argus-config persistentVolumeClaim: claimName: flexvolsmb-argus-config - name: flexvolsmb-argus-data persistentVolumeClaim: claimName: flexvolsmb-argus-data