mirror of https://github.com/rancher/dashboard.git
Fix setting Helm values for ProjectHelmCharts
The values must be stored into `spec.values` and not top-level in the resource. Signed-off-by: Bastian Hofmann <mail@bastianhofmann.de>
This commit is contained in:
parent
a9195dda4a
commit
36b52dcc75
|
|
@ -48,6 +48,10 @@ export default {
|
|||
},
|
||||
|
||||
data() {
|
||||
if (!this.value.spec.values) {
|
||||
this.$set(this.value.spec, 'values', {});
|
||||
}
|
||||
|
||||
return {
|
||||
systemNamespaces: null,
|
||||
namespaces: [],
|
||||
|
|
@ -128,7 +132,7 @@ export default {
|
|||
:side-tabs="true"
|
||||
>
|
||||
<Questions
|
||||
v-model="value"
|
||||
v-model="value.spec.values"
|
||||
tabbed="multiple"
|
||||
:target-namespace="value.metadata.namespace"
|
||||
:source="selectedNamespaceQuestions"
|
||||
|
|
|
|||
Loading…
Reference in New Issue