Refactor Argus,Gotify,Lighttpd
This commit is contained in:
37
services/Argus/deployment-argus.yml
Normal file
37
services/Argus/deployment-argus.yml
Normal file
@ -0,0 +1,37 @@
|
||||
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.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
|
Reference in New Issue
Block a user