Skip to content

Commit 910697f

Browse files
committed
release filebrowser chart version 0.4.1
1 parent aef2fd8 commit 910697f

File tree

5 files changed

+37
-7
lines changed

5 files changed

+37
-7
lines changed

docs/filebrowser-0.4.1.tgz

6.22 KB
Binary file not shown.

docs/index.yaml

+32-1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,37 @@ entries:
9191
- https://utkuozdemir.org/helm-charts/dontstarvetogether-1.0.0.tgz
9292
version: 1.0.0
9393
filebrowser:
94+
- annotations:
95+
artifacthub.io/changes: |
96+
- Fix settings.json path
97+
artifacthub.io/images: |
98+
- name: filebrowser/filebrowser
99+
image: docker.io/filebrowser/filebrowser:v2.20.0
100+
artifacthub.io/license: MIT
101+
apiVersion: v2
102+
appVersion: v2.20.0
103+
created: "2021-12-30T22:43:20.01328+01:00"
104+
description: A Helm chart for the File Browser project
105+
digest: 31a618bbe49ede31cc0f4f39f7ad3f2e6b047799885d89002a51a7a89fa0ace7
106+
home: https://filebrowser.org
107+
icon: https://utkuozdemir.org/helm-charts/filebrowser.png
108+
keywords:
109+
- filebrowser
110+
- file-browser
111+
- file-server
112+
- http-file-server
113+
maintainers:
114+
115+
name: Utku Özdemir
116+
url: https://utkuozdemir.org
117+
name: filebrowser
118+
sources:
119+
- https://github.com/filebrowser/filebrowser
120+
- https://github.com/utkuozdemir/helm-charts
121+
type: application
122+
urls:
123+
- https://utkuozdemir.org/helm-charts/filebrowser-0.4.1.tgz
124+
version: 0.4.1
94125
- annotations:
95126
artifacthub.io/changes: |
96127
- Change default port to 8080
@@ -2095,4 +2126,4 @@ entries:
20952126
urls:
20962127
- https://utkuozdemir.org/helm-charts/transmission-openvpn-0.1.0.tgz
20972128
version: 0.1.0
2098-
generated: "2021-12-30T22:36:07.532553+01:00"
2129+
generated: "2021-12-30T22:43:20.00978+01:00"

filebrowser/Chart.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: filebrowser
33
description: A Helm chart for the File Browser project
44
type: application
5-
version: 0.4.0
5+
version: 0.4.1
66
appVersion: v2.20.0
77
home: https://filebrowser.org
88
keywords:
@@ -21,8 +21,7 @@ maintainers:
2121
annotations:
2222
artifacthub.io/license: MIT
2323
artifacthub.io/changes: |
24-
- Change default port to 8080
25-
- Do rollout restart on configmap change
24+
- Fix settings.json path
2625
artifacthub.io/images: |
2726
- name: filebrowser/filebrowser
2827
image: docker.io/filebrowser/filebrowser:v2.20.0

filebrowser/templates/configmap.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ metadata:
55
labels:
66
{{- include "filebrowser.labels" . | nindent 4 }}
77
data:
8-
.filebrowser.json: |
8+
settings.json: |
99
{{- .Values.config | toPrettyJson | nindent 4 }}

filebrowser/templates/deployment.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ spec:
4141
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
4242
imagePullPolicy: {{ .Values.image.pullPolicy }}
4343
volumeMounts:
44-
- mountPath: /.filebrowser.json
44+
- mountPath: /config/settings.json
4545
name: config
46-
subPath: .filebrowser.json
46+
subPath: settings.json
4747
- mountPath: /db
4848
name: db
4949
- mountPath: /rootdir

0 commit comments

Comments
 (0)