3 Commits

Author SHA1 Message Date
4bf053a1b9 Update Helm release meilisearch to v0.19.0
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
lint-test-helm / lint-helm (pull_request) Successful in 18s
2025-12-17 17:42:00 +00:00
605b170072 remove old config
All checks were successful
renovate / renovate (push) Successful in 1m48s
lint-test-helm / lint-helm (push) Successful in 15s
render-manifests-push / render-manifests-push (push) Successful in 22s
2025-12-17 11:40:09 -06:00
fc478400c6 add logging to script 2025-12-17 11:36:44 -06:00
5 changed files with 7 additions and 24 deletions

View File

@@ -24,4 +24,4 @@ dependencies:
repository: oci://harbor.alexlebens.net/helm-charts
version: 0.5.0
digest: sha256:acc2ca18acea2ad344c2c20a45e8fe5a5df9025aac4583f04b1bf9283bfe77bc
generated: "2025-12-17T17:35:35.788258237Z"
generated: "2025-12-17T17:41:40.370105655Z"

View File

@@ -12,4 +12,4 @@ dependencies:
repository: oci://harbor.alexlebens.net/helm-charts
version: 0.5.0
digest: sha256:2880343c35353a7216758f31810c7d7a840bc6f91fa17495dd6b34bc73ccf8d7
generated: "2025-12-17T17:35:47.924123904Z"
generated: "2025-12-17T17:41:53.62794601Z"

View File

@@ -1,24 +1,5 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: libation-config
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: libation-config
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
storageClassName: nfs-client
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
volumeMode: Filesystem
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: libation-nfs-storage
namespace: {{ .Release.Namespace }}

View File

@@ -45,7 +45,7 @@ libation:
cpu: 10m
memory: 32Mi
persistence:
config-new:
config:
forceRename: libation
storageClass: ceph-block
accessMode: ReadWriteOnce

View File

@@ -14,9 +14,11 @@ data:
echo "curl could not be found, installing";
apk add curl;
fi;
echo ">> Setting port to random ...";
curl -i -X POST --silent --write-out '%{http_code}' -d "json={\"random_port\": \"true\"}" "http://localhost:8080/api/v2/app/setPreferences";
sleep 10
echo "updating port with $1";
echo ">> Sleeping for changes to take effect";
sleep 10;
echo ">> Updating port with $1 ...";
curl -i -X POST --silent --write-out '%{http_code}' -d "json={\"listen_port\": \"${1}\"}" "http://localhost:8080/api/v2/app/setPreferences";
---