Merge pull request #447 from truenas/NAS-116017

NAS-116017 / 22.12 / Properly mount additional host volumes
This commit is contained in:
M. Rehan
2022-05-20 19:04:29 +05:00
committed by GitHub
92 changed files with 46 additions and 14 deletions

View File

@@ -3,7 +3,7 @@ appVersion: "20220121"
icon: https://photoprism.app/static/icons/logo.svg
description: AI-powered app for browsing, organizing & sharing your photo collection.
name: photoprism
version: 1.0.0
version: 1.0.1
dependencies:
- name: common
repository: file://../../../library/common/2112.0.0

View File

@@ -31,6 +31,10 @@ spec:
- name: {{ .Chart.Name }}
{{ include "common.containers.imageConfig" .Values.image | nindent 10 }}
volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }}
{{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }}
- name: extrappvolume-{{ $index }}
mountPath: {{ $hostPathConfiguration.mountPath }}
{{ end }}
ports:
- name: web
containerPort: 2342

View File

@@ -3,7 +3,7 @@ appVersion: 2022.04.3
icon: https://truecharts.org/_static/img/appicons/pihole.png
description: DNS and Ad-filtering for your network.
name: pihole
version: 1.0.0
version: 1.0.1
dependencies:
- name: common
repository: file://../../../library/common/2112.0.0

View File

@@ -31,6 +31,10 @@ spec:
- name: {{ .Chart.Name }}
{{ include "common.containers.imageConfig" .Values.image | nindent 10 }}
volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }}
{{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }}
- name: extrappvolume-{{ $index }}
mountPath: {{ $hostPathConfiguration.mountPath }}
{{ end }}
ports:
- name: web
containerPort: 80

View File

@@ -3,7 +3,7 @@ appVersion: 2.3.1
icon: https://truecharts.org/_static/img/appicons/qbittorrent.png
description: Download data from qbittorent.
name: qbittorent
version: 1.0.0
version: 1.0.1
dependencies:
- name: common
repository: file://../../../library/common/2112.0.0

View File

@@ -31,6 +31,10 @@ spec:
- name: {{ .Chart.Name }}
{{ include "common.containers.imageConfig" .Values.image | nindent 10 }}
volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }}
{{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }}
- name: extrappvolume-{{ $index }}
mountPath: {{ $hostPathConfiguration.mountPath }}
{{ end }}
ports:
- name: web
containerPort: {{ .Values.web_port }}

View File

@@ -1,14 +1,14 @@
apiVersion: v2
appVersion: 1.20.1
icon: https://truecharts.org/_static/img/appicons/syncthing.png
description: Syncthing is a continuous file synchronization program.
name: syncthing
version: 1.0.2
dependencies:
- name: common
repository: file://../../../library/common/2112.0.0
version: 2112.0.0
description: Syncthing is a continuous file synchronization program.
home: https://syncthing.net/
icon: https://truecharts.org/_static/img/appicons/syncthing.png
keywords:
- storage
- backup
name: syncthing
version: 1.0.1

View File

@@ -32,6 +32,10 @@ spec:
- name: {{ .Chart.Name }}
{{ include "common.containers.imageConfig" .Values.image | nindent 10 }}
volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }}
{{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }}
- name: extrappvolume-{{ $index }}
mountPath: {{ $hostPathConfiguration.mountPath }}
{{ end }}
ports:
- name: web
containerPort: 8384

View File

@@ -3,7 +3,7 @@ appVersion: "20220121"
icon: https://photoprism.app/static/icons/logo.svg
description: AI-powered app for browsing, organizing & sharing your photo collection.
name: photoprism
version: 1.0.0
version: 1.0.1
dependencies:
- name: common
repository: file://../../../library/common/2112.0.0

View File

@@ -31,6 +31,10 @@ spec:
- name: {{ .Chart.Name }}
{{ include "common.containers.imageConfig" .Values.image | nindent 10 }}
volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }}
{{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }}
- name: extrappvolume-{{ $index }}
mountPath: {{ $hostPathConfiguration.mountPath }}
{{ end }}
ports:
- name: web
containerPort: 2342

View File

@@ -3,7 +3,7 @@ appVersion: 2022.04.3
icon: https://truecharts.org/_static/img/appicons/pihole.png
description: DNS and Ad-filtering for your network.
name: pihole
version: 1.0.0
version: 1.0.1
dependencies:
- name: common
repository: file://../../../library/common/2112.0.0

View File

@@ -31,6 +31,10 @@ spec:
- name: {{ .Chart.Name }}
{{ include "common.containers.imageConfig" .Values.image | nindent 10 }}
volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }}
{{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }}
- name: extrappvolume-{{ $index }}
mountPath: {{ $hostPathConfiguration.mountPath }}
{{ end }}
ports:
- name: web
containerPort: 80

View File

@@ -3,7 +3,7 @@ appVersion: 2.3.1
icon: https://truecharts.org/_static/img/appicons/qbittorrent.png
description: Download data from qbittorent.
name: qbittorent
version: 1.0.0
version: 1.0.1
dependencies:
- name: common
repository: file://../../../library/common/2112.0.0

View File

@@ -31,6 +31,10 @@ spec:
- name: {{ .Chart.Name }}
{{ include "common.containers.imageConfig" .Values.image | nindent 10 }}
volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }}
{{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }}
- name: extrappvolume-{{ $index }}
mountPath: {{ $hostPathConfiguration.mountPath }}
{{ end }}
ports:
- name: web
containerPort: {{ .Values.web_port }}

View File

@@ -1,14 +1,14 @@
apiVersion: v2
appVersion: 1.20.1
icon: https://truecharts.org/_static/img/appicons/syncthing.png
description: Syncthing is a continuous file synchronization program.
name: syncthing
version: 1.0.2
dependencies:
- name: common
repository: file://../../../library/common/2112.0.0
version: 2112.0.0
description: Syncthing is a continuous file synchronization program.
home: https://syncthing.net/
icon: https://truecharts.org/_static/img/appicons/syncthing.png
keywords:
- storage
- backup
name: syncthing
version: 1.0.1

View File

@@ -32,6 +32,10 @@ spec:
- name: {{ .Chart.Name }}
{{ include "common.containers.imageConfig" .Values.image | nindent 10 }}
volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }}
{{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }}
- name: extrappvolume-{{ $index }}
mountPath: {{ $hostPathConfiguration.mountPath }}
{{ end }}
ports:
- name: web
containerPort: 8384