chore(version): Bump to 0.26.3

This commit is contained in:
Tanguy Herbron 2025-05-19 15:28:56 +02:00
parent e68c48f0f4
commit a0df2d736c
2 changed files with 29 additions and 2 deletions

View File

@ -15,7 +15,7 @@ spec:
spec: spec:
containers: containers:
- name: dawarich - name: dawarich
image: freikin/dawarich:0.25.3 image: freikin/dawarich:0.26.3
command: ["web-entrypoint.sh"] command: ["web-entrypoint.sh"]
args: ["bin/rails", "server", "-p", "3000", "-b", "::"] args: ["bin/rails", "server", "-p", "3000", "-b", "::"]
ports: ports:
@ -66,13 +66,17 @@ spec:
key: key key: key
- name: RAILS_LOG_TO_STDOUT - name: RAILS_LOG_TO_STDOUT
value: "true" value: "true"
- name: SELF_HOSTED
value: "true"
volumeMounts: volumeMounts:
- mountPath: "/var/app/public" - mountPath: "/var/app/public"
name: dawarich-public name: dawarich-public
- mountPath: "/var/app/tmp/imports/watched" - mountPath: "/var/app/tmp/imports/watched"
name: dawarich-watched name: dawarich-watched
- mountPath: "/var/app/storage"
name: dawarich-storage
- name: sidekiq - name: sidekiq
image: freikin/dawarich:0.25.3 image: freikin/dawarich:0.26.3
command: ["sidekiq-entrypoint.sh"] command: ["sidekiq-entrypoint.sh"]
args: ["bundle", "exec", "sidekiq"] args: ["bundle", "exec", "sidekiq"]
env: env:
@ -117,11 +121,15 @@ spec:
key: key key: key
- name: RAILS_LOG_TO_STDOUT - name: RAILS_LOG_TO_STDOUT
value: "true" value: "true"
- name: SELF_HOSTED
value: "true"
volumeMounts: volumeMounts:
- mountPath: "/var/app/public" - mountPath: "/var/app/public"
name: dawarich-public name: dawarich-public
- mountPath: "/var/app/tmp/imports/watched" - mountPath: "/var/app/tmp/imports/watched"
name: dawarich-watched name: dawarich-watched
- mountPath: "/var/app/storage"
name: dawarich-storage
- name: redis - name: redis
image: redis:7.4.2 image: redis:7.4.2
ports: ports:
@ -133,3 +141,6 @@ spec:
- name: dawarich-watched - name: dawarich-watched
persistentVolumeClaim: persistentVolumeClaim:
claimName: dawarich-watched-pvc claimName: dawarich-watched-pvc
- name: dawarich-storage
persistentVolumeClaim:
claimName: dawarich-storage-pvc

View File

@ -29,3 +29,19 @@ spec:
requests: requests:
storage: 1Gi storage: 1Gi
storageClassName: redundant-storage-class storageClassName: redundant-storage-class
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: dawarich-storage-pvc
namespace: dawarich
labels:
recurring-job.longhorn.io/source: enabled
recurring-job-group.longhorn.io/standard-pvc: enabled
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: redundant-storage-class