File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -65,12 +65,12 @@ spec:
6565apiVersion : kots.io/v1beta2
6666kind : HelmChart
6767metadata :
68- name : nginx -app-secondary
68+ name : redis -app
6969spec :
7070 chart :
71- name : nginx -app
71+ name : redis -app
7272 chartVersion : 0.1.0
73- namespace : nginx -app-secondary
73+ namespace : redis -app
7474 values :
7575 server :
7676 replicaCount : 1
File renamed without changes.
Original file line number Diff line number Diff line change 6363 //go:embed assets/kotskinds-chart.yaml
6464 helmChartData string
6565
66- //go:embed assets/chart.tgz
67- helmChartArchiveData string
66+ //go:embed assets/nginx-app-0.1.0.tgz
67+ nginxChartArchiveData string
68+
69+ //go:embed assets/redis-app-0.1.0.tgz
70+ redisChartArchiveData string
6871
6972 //go:embed assets/install-license.yaml
7073 licenseData string
@@ -156,7 +159,8 @@ func embedReleaseData(clusterConfig string) error {
156159 "application.yaml" : []byte (applicationData ),
157160 "config.yaml" : []byte (configData ),
158161 "chart.yaml" : []byte (helmChartData ),
159- "nginx-app-0.1.0.tgz" : []byte (helmChartArchiveData ),
162+ "nginx-app-0.1.0.tgz" : []byte (nginxChartArchiveData ),
163+ "redis-app-0.1.0.tgz" : []byte (redisChartArchiveData ),
160164 }); err != nil {
161165 return fmt .Errorf ("set release data: %v" , err )
162166 }
You can’t perform that action at this time.
0 commit comments