fix(custom-app): Move command from .Values.controller.command to .Values.command (#3446)
* fix(custom-app): Move command from .Values.controller.command to .Values.command * whoops
This commit is contained in:
parent
e7ac41d976
commit
0e40f84cb8
|
@ -19,7 +19,7 @@ name: custom-app
|
|||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/stable/custom-app
|
||||
type: application
|
||||
version: 5.1.31
|
||||
version: 5.1.32
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- custom
|
||||
|
|
|
@ -41,8 +41,8 @@ questions:
|
|||
# Include{replica1}
|
||||
# Include{strategy}
|
||||
# Include{recreate}
|
||||
# Include{controllerExpertCommand}
|
||||
# Include{controllerExpert}
|
||||
# Include{controllerExpertCommand}
|
||||
# Include{containerConfig}
|
||||
- variable: probes
|
||||
group: "Container Configuration"
|
||||
|
|
|
@ -1,17 +1,19 @@
|
|||
- variable: customcommand
|
||||
label: Show Custom Command Options
|
||||
- variable: customcommand
|
||||
group: Controller
|
||||
label: "Custom Command"
|
||||
description: "Do not click this unless you know what you are doing"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: command
|
||||
label: Command
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: command
|
||||
label: Command
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: param
|
||||
label: Param
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: param
|
||||
label: Param
|
||||
schema:
|
||||
type: string
|
||||
type: string
|
||||
|
|
Loading…
Reference in New Issue