Skip to content

Commit

Permalink
add changelog for beta1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Force committed Apr 25, 2021
1 parent afa3ebd commit 12f2c9b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG/CHANGELOG-1.1.0-beta1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
### 1.1.0-beta1 Changelog

* Support for pointing at multiple chart sources, both local and remote, added to manifest schema
* Implement a global and per-chart Helm install/upgrade timeout override in the manifest
* Ability to set a custom release name for a chart in the manifest, previously would have to be the chart name
* Improve log file configuration, previously was just `loftsman.log` output always on all commands, we've moved towards a default of not outputting
* Add pipeline/action to publish an official container image for the Loftman CLI
* Initial functional testing script added to repo
12 changes: 6 additions & 6 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,15 @@ func init() {
"A comma-delimited list of charts to initialize in the manifest")

shipCmd.PersistentFlags().StringVarP(&loftsman.Settings.ChartsSource.Repo, "charts-repo", "", "",
"DEPRECATED in favor of manifest chartSources. The root URL for an external helm chart repo to use for\n"+
"installing/upgrading charts. (required if not using charts-path)")
"DEPRECATED in favor of manifest spec.sources.charts. The root URL for an external helm chart repo to use for\n"+
"installing/upgrading charts")
shipCmd.PersistentFlags().StringVarP(&loftsman.Settings.ChartsSource.Path, "charts-path", "", "",
"DEPRECATED in favor of manifest chartSources. Local path to a directory containing helm-packaged charts,\n"+
"e.g. files like my-chart-0.1.0.tgz (required if not using charts-repo)")
"DEPRECATED in favor of manifest spec.sources.charts. Local path to a directory containing helm-packaged charts,\n"+
"e.g. files like my-chart-0.1.0.tgz")
shipCmd.PersistentFlags().StringVarP(&loftsman.Settings.ChartsSource.RepoUsername, "charts-repo-username", "", "",
"DEPRECATED in favor of manifest chartSources. The username for charts-repo, if applicable")
"DEPRECATED in favor of manifest spec.sources.charts. The username for charts-repo, if applicable")
shipCmd.PersistentFlags().StringVarP(&loftsman.Settings.ChartsSource.RepoPassword, "charts-repo-password", "", "",
"DEPRECATED in favor of manifest chartSources. The password for charts-repo, if applicable")
"DEPRECATED in favor of manifest spec.sources.charts. The password for charts-repo, if applicable")

shipCmd.PersistentFlags().StringVarP(&loftsman.Settings.Manifest.Path, manifestPathArgName, "", "",
"Local path to the Loftsman YAML manifest file, instruction on what charts to install and how to install them.\n"+
Expand Down
2 changes: 0 additions & 2 deletions schemas/manifests/v1beta1/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,6 @@ func (m *Manifest) Release(kubernetes interfaces.Kubernetes, helm interfaces.Hel

CHARTS:
for _, chart := range m.Spec.Charts {
data, _ := yaml.Marshal(chart)
fmt.Println(string(data))
logForChart := func(level zerolog.Level, msg string) {
if strings.TrimSpace(msg) == "" {
return
Expand Down

0 comments on commit 12f2c9b

Please sign in to comment.