Skip to content

Commit

Permalink
add resource requests to values.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Gentele committed Nov 4, 2018
1 parent c9ef4dc commit d309a4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/devspace/configure/package.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func AddPackage(skipQuestion bool, appVersion, chartVersion, deployment string,
}

defer f.Close()
if _, err = f.WriteString("\n# Here you can specify the subcharts values (for more information see: https://github.com/helm/helm/blob/master/docs/chart_template_guide/subcharts_and_globals.md#overriding-values-from-a-parent-chart)\n" + version.GetName() + ": {}\n"); err != nil {
if _, err = f.WriteString("\n# Here you can specify the subcharts values (for more information see: https://github.com/helm/helm/blob/master/docs/chart_template_guide/subcharts_and_globals.md#overriding-values-from-a-parent-chart)\n" + version.GetName() + ":\n resources:\n requests:\n memory: \"0\"\n cpu: \"0\""); err != nil {
log.Fatal(err)
}
}
Expand Down

0 comments on commit d309a4b

Please sign in to comment.