3 Commits

Author SHA1 Message Date
ee234edf42 Update stalwartlabs/stalwart Docker tag to v0.15.0
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
lint-test-helm / lint-helm (pull_request) Successful in 15s
2025-12-17 17:42:05 +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
4 changed files with 6 additions and 23 deletions

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";
---

View File

@@ -9,7 +9,7 @@ stalwart:
main:
image:
repository: stalwartlabs/stalwart
tag: v0.14.1
tag: v0.15.0
pullPolicy: IfNotPresent
resources:
requests: