Storage Tweaking and bugfixing (#506)
* first work for allowing ramdisk usage * add bump tooling. Fixes: #157 * bump minor versions due to adding ramdisk emptydir to persistence * allow disabling persistent storage * actually push major as it is breaking in theory * cleanup hpm example code * Allow custom storageClass and fix bug using the wrong storageClass * try fixing gabs * cleanup * update tests * revert some permission job changes * reverse some of the 3.0 common incompatible bitwarden changes
This commit is contained in:
@@ -27,4 +27,4 @@ sources:
|
||||
- https://hub.docker.com/u/esphome
|
||||
type: application
|
||||
upstream_version: 4.3.1
|
||||
version: 4.0.2
|
||||
version: 4.1.0
|
||||
|
||||
@@ -214,16 +214,13 @@ questions:
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
hidden: true
|
||||
hidden: false
|
||||
- variable: storageClass
|
||||
label: "Type of Storage"
|
||||
description: " Warning: Anything other than Internal will break rollback!"
|
||||
description: " Warning: Anything other than SCALE-ZFS will break rollback!"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
enum:
|
||||
- value: ""
|
||||
description: "Internal"
|
||||
default: "SCALE-ZFS"
|
||||
- variable: mountPath
|
||||
label: "mountPath"
|
||||
description: "Path inside the container the storage is mounted"
|
||||
@@ -232,17 +229,27 @@ questions:
|
||||
default: "/config"
|
||||
hidden: true
|
||||
- variable: emptyDir
|
||||
label: "Mount a ramdisk instead of actual storage"
|
||||
label: "Use Empty Dir Mountpoint"
|
||||
schema:
|
||||
type: dict
|
||||
hidden: true
|
||||
hidden: false
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enable emptyDir"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
hidden: true
|
||||
hidden: false
|
||||
- variable: medium
|
||||
label: "EmptyDir Medium"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
enum:
|
||||
- value: ""
|
||||
description: "Default"
|
||||
- value: "Memory"
|
||||
description: "Memory"
|
||||
- variable: accessMode
|
||||
label: "Access Mode (Advanced)"
|
||||
description: "Allow or disallow multiple PVC's writhing to the same PVC"
|
||||
@@ -272,16 +279,13 @@ questions:
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
hidden: true
|
||||
hidden: false
|
||||
- variable: storageClass
|
||||
label: "Type of Storage"
|
||||
description: " Warning: Anything other than Internal will break rollback!"
|
||||
description: " Warning: Anything other than SCALE-ZFS will break rollback!"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
enum:
|
||||
- value: ""
|
||||
description: "Internal"
|
||||
default: "SCALE-ZFS"
|
||||
- variable: mountPath
|
||||
label: "mountPath"
|
||||
description: "Path inside the container the storage is mounted"
|
||||
@@ -290,17 +294,27 @@ questions:
|
||||
default: "/.platformio"
|
||||
hidden: true
|
||||
- variable: emptyDir
|
||||
label: "Mount a ramdisk instead of actual storage"
|
||||
label: "Use Empty Dir Mountpoint"
|
||||
schema:
|
||||
type: dict
|
||||
hidden: true
|
||||
hidden: false
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enable emptyDir"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
hidden: true
|
||||
hidden: false
|
||||
- variable: medium
|
||||
label: "EmptyDir Medium"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
enum:
|
||||
- value: ""
|
||||
description: "Default"
|
||||
- value: "Memory"
|
||||
description: "Memory"
|
||||
- variable: accessMode
|
||||
label: "Access Mode (Advanced)"
|
||||
description: "Allow or disallow multiple PVC's writhing to the same PVC"
|
||||
|
||||
Reference in New Issue
Block a user