Kubernetes.K3s.installLog/services/Argus/deployment-argus.yml

39 lines
883 B
YAML
Raw Normal View History

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-04-03 22:29:35 +00:00
image: releaseargus/argus:0.16.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