Automated Manifest Update (#2326)
This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. Reviewed-on: #2326 Co-authored-by: gitea-bot <gitea-bot@alexlebens.net> Co-committed-by: gitea-bot <gitea-bot@alexlebens.net>
This commit was merged in pull request #2326.
This commit is contained in:
@@ -72,8 +72,8 @@ spec:
|
|||||||
value: https://searxng.alexlebens.net/search?q=<query>
|
value: https://searxng.alexlebens.net/search?q=<query>
|
||||||
- name: SEARXNG_HOSTNAME
|
- name: SEARXNG_HOSTNAME
|
||||||
value: searxng.alexlebens.net
|
value: searxng.alexlebens.net
|
||||||
- name: SEARXNG_REDIS_URL
|
- name: SEARXNG_VALKEY_URL
|
||||||
value: redis://redis-replication-searxng-master:6379/0
|
value: valkey://127.0.0.1:6379/0
|
||||||
- name: GRANIAN_HOST
|
- name: GRANIAN_HOST
|
||||||
value: 0.0.0.0
|
value: 0.0.0.0
|
||||||
- name: GRANIAN_PORT
|
- name: GRANIAN_PORT
|
||||||
@@ -88,7 +88,20 @@ spec:
|
|||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /etc/searxng
|
- mountPath: /etc/searxng
|
||||||
name: browser-data
|
name: browser-data
|
||||||
|
- image: valkey/valkey:9.0.0-alpine3.22
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
name: valkey
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 10m
|
||||||
|
memory: 128Mi
|
||||||
|
volumeMounts:
|
||||||
|
- mountPath: /data
|
||||||
|
name: valkey-data
|
||||||
volumes:
|
volumes:
|
||||||
- name: browser-data
|
- name: browser-data
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: searxng-browser-data
|
claimName: searxng-browser-data
|
||||||
|
- name: valkey-data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: searxng-valkey-data
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
---
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
apiVersion: v1
|
||||||
|
metadata:
|
||||||
|
name: searxng-valkey-data
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/instance: searxng
|
||||||
|
app.kubernetes.io/managed-by: Helm
|
||||||
|
app.kubernetes.io/name: searxng
|
||||||
|
helm.sh/chart: searxng-4.5.0
|
||||||
|
namespace: searxng
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- "ReadWriteOnce"
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: "5Gi"
|
||||||
|
storageClassName: "ceph-block"
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
---
|
|
||||||
apiVersion: redis.redis.opstreelabs.in/v1beta2
|
|
||||||
kind: RedisReplication
|
|
||||||
metadata:
|
|
||||||
name: redis-replication-searxng
|
|
||||||
namespace: searxng
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: redis-replication-searxng
|
|
||||||
app.kubernetes.io/instance: searxng
|
|
||||||
app.kubernetes.io/part-of: searxng
|
|
||||||
spec:
|
|
||||||
clusterSize: 3
|
|
||||||
podSecurityContext:
|
|
||||||
runAsUser: 1000
|
|
||||||
fsGroup: 1000
|
|
||||||
kubernetesConfig:
|
|
||||||
image: quay.io/opstree/redis:v8.0.3
|
|
||||||
imagePullPolicy: IfNotPresent
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
cpu: 50m
|
|
||||||
memory: 128Mi
|
|
||||||
storage:
|
|
||||||
volumeClaimTemplate:
|
|
||||||
spec:
|
|
||||||
storageClassName: ceph-block
|
|
||||||
accessModes: ["ReadWriteOnce"]
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
storage: 1Gi
|
|
||||||
redisExporter:
|
|
||||||
enabled: true
|
|
||||||
image: quay.io/opstree/redis-exporter:v1.48.0
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
apiVersion: monitoring.coreos.com/v1
|
|
||||||
kind: ServiceMonitor
|
|
||||||
metadata:
|
|
||||||
name: redis-replication-searxng
|
|
||||||
namespace: searxng
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: redis-replication-searxng
|
|
||||||
app.kubernetes.io/instance: searxng
|
|
||||||
app.kubernetes.io/part-of: searxng
|
|
||||||
redis-operator: "true"
|
|
||||||
env: production
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
redis_setup_type: replication
|
|
||||||
endpoints:
|
|
||||||
- port: redis-exporter
|
|
||||||
interval: 30s
|
|
||||||
scrapeTimeout: 10s
|
|
||||||
Reference in New Issue
Block a user