Compare commits
3 Commits
5bcf3f04ee
...
d1021a63ca
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d1021a63ca | ||
| f05adc2a9b | |||
| 2923351bfc |
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
|
||||||
@@ -18,7 +18,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: searxng
|
- name: searxng
|
||||||
image: searxng/searxng@sha256:606eaa76b04fd313b26977656eb8344a2de667024b3b596575f2920610591d61
|
image: searxng/searxng@sha256:cf4ae7bdd6f2c9211faec7bf39992f1a2bf0753f145589a95aaa87182bfbc6ca
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8080
|
- containerPort: 8080
|
||||||
env:
|
env:
|
||||||
|
|||||||
Reference in New Issue
Block a user