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-09-29 03:59:09 +00:00
|
|
|
image: releaseargus/argus:0.18.0
|
2024-01-21 05:18:31 +00:00
|
|
|
args:
|
|
|
|
- -config.file=/app/config/config.yml
|
2023-09-19 08:02:18 +00:00
|
|
|
ports:
|
|
|
|
- name: web
|
|
|
|
containerPort: 8080
|
|
|
|
volumeMounts:
|
2024-01-21 05:18:31 +00:00
|
|
|
- name: flexvolsmb-argus-config
|
|
|
|
mountPath: /app/config
|
2023-09-19 08:02:18 +00:00
|
|
|
- name: flexvolsmb-argus-data
|
|
|
|
mountPath: /app/data
|
|
|
|
volumes:
|
2024-01-21 05:18:31 +00:00
|
|
|
- name: flexvolsmb-argus-config
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: flexvolsmb-argus-config
|
2023-09-19 08:02:18 +00:00
|
|
|
- name: flexvolsmb-argus-data
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: flexvolsmb-argus-data
|