Compare commits
3 Commits
9f8545388a
...
82802d54bb
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
82802d54bb | ||
| f05adc2a9b | |||
| 2923351bfc |
@@ -13,7 +13,7 @@ jobs:
|
|||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Run Renovate
|
- name: Run Renovate
|
||||||
uses: docker://renovate/renovate:41.83.2
|
uses: docker://renovate/renovate:41.89.2
|
||||||
env:
|
env:
|
||||||
LOG_LEVEL: info
|
LOG_LEVEL: info
|
||||||
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
||||||
|
|||||||
14
cluster/apps/pulse/pulse-pvc.yml
Normal file
14
cluster/apps/pulse/pulse-pvc.yml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: pulse-ceph
|
||||||
|
namespace: default
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
volumeMode: Filesystem
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 1Gi
|
||||||
|
storageClassName: csi-rbd-sc
|
||||||
13
cluster/apps/pulse/pulse-svc.yml
Normal file
13
cluster/apps/pulse/pulse-svc.yml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: pulse
|
||||||
|
namespace: default
|
||||||
|
spec:
|
||||||
|
type: LoadBalancer
|
||||||
|
selector:
|
||||||
|
app: pulse
|
||||||
|
ports:
|
||||||
|
- port: 7655
|
||||||
|
targetPort: 7655
|
||||||
27
cluster/apps/pulse/pulse.yml
Normal file
27
cluster/apps/pulse/pulse.yml
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: pulse
|
||||||
|
namespace: default
|
||||||
|
spec:
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: pulse
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: pulse
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: pulse
|
||||||
|
image: rcourtman/pulse:4.9.1
|
||||||
|
volumeMounts:
|
||||||
|
- name: pulse-data
|
||||||
|
mountPath: /data
|
||||||
|
volumes:
|
||||||
|
- name: pulse-data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: pulse-ceph
|
||||||
Reference in New Issue
Block a user