2023-09-19 08:02:18 +00:00
|
|
|
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
|
2024-01-02 06:31:53 +00:00
|
|
|
image: releaseargus/argus:0.13.3
|
2023-09-19 08:02:18 +00:00
|
|
|
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
|