quaint-queen-45003
01/30/2019, 8:43 PMnamespace
param in ChartOps
to deploy a chart from a public repo into a specific name space but it ended up in default rather than the specified name space. has anyone had any luck with this?gorgeous-egg-16927
01/30/2019, 8:48 PMChartOps.transformations
quaint-queen-45003
01/30/2019, 8:52 PMgorgeous-egg-16927
01/30/2019, 8:57 PMquaint-queen-45003
01/30/2019, 8:59 PMcreamy-potato-29402
01/30/2019, 9:01 PMhelm template
, btw. Not sure if we should change this — helm is moving away from Tiller, so in the medium term these charts will need to support this too.quaint-queen-45003
01/30/2019, 9:02 PMaddNamespace
so that we can reuse that function?transformations
transformations: [addNamespace("kube-system")]
161 function addNamespace(o: any, namespace: string) {
162 if (o !== undefined) {
163 if (o.metadata !== undefined) {
164 o.metadata.namespace = namespace;
165 } else {
166 o.metadata = {namespace: namespace}
167 }
168 }
169 }
creamy-potato-29402
01/30/2019, 10:17 PMquaint-queen-45003
01/30/2019, 10:18 PMcreamy-potato-29402
01/31/2019, 12:28 AM