Correct targetPort and always use PVC during testing (#840)
* Fix targetPort not being processed correctly * Always use PVC in values.yaml just to be sure it actually works * fix a small copy-paste mistake * bump * fix hyperion-ng mistake
This commit is contained in:
@@ -21,4 +21,4 @@ name: mosquitto
|
||||
sources:
|
||||
- https://github.com/eclipse/mosquitto
|
||||
type: application
|
||||
version: 1.8.5
|
||||
version: 1.8.6
|
||||
|
||||
@@ -231,7 +231,7 @@ questions:
|
||||
default: 1883
|
||||
editable: false
|
||||
hidden: true
|
||||
- variable: targetport
|
||||
- variable: targetPort
|
||||
label: "Target Port"
|
||||
description: "This port exposes the container port on the service"
|
||||
schema:
|
||||
|
||||
@@ -27,13 +27,17 @@ persistence:
|
||||
# When enabled, this enables `persistence` and `persistence_location` in the mosquitto config.
|
||||
# @default -- See values.yaml
|
||||
data:
|
||||
enabled: false
|
||||
enabled: true
|
||||
type: pvc
|
||||
accessMode: ReadWriteOnce
|
||||
size: "100Gi"
|
||||
mountPath: /mosquitto/data
|
||||
# -- Configure a persistent volume to place *.conf mosquitto-config-files in.
|
||||
# When enabled, this gets set as `include_dir` in the mosquitto config.
|
||||
# @default -- See values.yaml
|
||||
configinc:
|
||||
enabled: false
|
||||
mountPath: /mosquitto/configinc
|
||||
enabled: true
|
||||
type: pvc
|
||||
accessMode: ReadWriteOnce
|
||||
size: 100Mi
|
||||
size: "100Gi"
|
||||
mountPath: /mosquitto/configinc
|
||||
|
||||
Reference in New Issue
Block a user