Add Pulse deployment, service, and PVC configurations
This commit is contained in:
30
clusters/default/monitoring/pulse/pulse.yml
Normal file
30
clusters/default/monitoring/pulse/pulse.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: pulse
|
||||
namespace: monitoring
|
||||
spec:
|
||||
strategy:
|
||||
type: Recreate
|
||||
selector:
|
||||
matchLabels:
|
||||
app: pulse
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: pulse
|
||||
spec:
|
||||
containers:
|
||||
- name: pulse
|
||||
image: rcourtman/pulse:4.22.0
|
||||
volumeMounts:
|
||||
- name: pulse-data
|
||||
mountPath: /data
|
||||
env:
|
||||
- name: ALLOWED_ORIGINS
|
||||
value: "*"
|
||||
volumes:
|
||||
- name: pulse-data
|
||||
persistentVolumeClaim:
|
||||
claimName: pulse-longhorn
|
||||
Reference in New Issue
Block a user