chore(adguard-home): expose data persistence (#2623)

This commit is contained in:
Stavros Kois
2022-05-06 21:41:51 +03:00
committed by GitHub
parent 6ec6b5ddf8
commit 86d6cb2f59
2 changed files with 44 additions and 1 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ maintainers:
name: adguard-home
sources:
- https://hub.docker.com/r/adguard/adguardhome
version: 0.0.2
version: 0.0.3
annotations:
truecharts.org/catagories: |
- media
@@ -760,6 +760,49 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: data
label: "App Data Storage"
description: "Stores the Application Data."
schema:
additional_attrs: true
type: dict
attrs:
- variable: type
label: "Type of Storage"
description: "Sets the persistence type, Anything other than PVC could break rollback!"
schema:
type: string
default: "simplePVC"
enum:
- value: "simplePVC"
description: "PVC (simple)"
- value: "simpleHP"
description: "HostPath (simple)"
- value: "emptyDir"
description: "emptyDir"
- value: "pvc"
description: "pvc"
- value: "hostPath"
description: "hostPath"
# Include{persistenceBasic}
- variable: hostPath
label: "hostPath"
description: "Path inside the container the storage is mounted"
schema:
show_if: [["type", "=", "hostPath"]]
type: hostpath
- variable: medium
label: "EmptyDir Medium"
schema:
show_if: [["type", "=", "emptyDir"]]
type: string
default: ""
enum:
- value: ""
description: "Default"
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
# Include{persistenceList}