diff --git a/CHANGELOG.md b/CHANGELOG.md index d8cf7d24eeaa53cadceae31f65ecee5db0d052fd..db02cbfd4b399cfacc53933e2f77da276eb1e9cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ [Full Changelog](https://github.com/ksonnet/ksonnet/compare/v0.8.0...v0.9.0) +To update older ksonnet applications, run `ks upgrade --help`. + ### Overview This release focuses on two major areas: @@ -174,6 +176,7 @@ and individual component files can also be referenced by _targets_. **Merged pull requests:** +- ksonnet app.yaml format changes in next minor release. Handle both versions [\#338](https://github.com/ksonnet/ksonnet/pull/338) ([bryanl](https://github.com/bryanl)) - Attempt to generate lib directory when not found [\#337](https://github.com/ksonnet/ksonnet/pull/337) ([jessicayuen](https://github.com/jessicayuen)) - Fix the execution paths for the 0.8 > 0.9 migration warning [\#335](https://github.com/ksonnet/ksonnet/pull/337) ([jessicayuen](https://github.com/jessicayuen)) - Resolve api spec based on swagger version [\#334](https://github.com/ksonnet/ksonnet/pull/334) ([jessicayuen](https://github.com/jessicayuen)) diff --git a/metadata/manager.go b/metadata/manager.go index 6ad56644ae1e4035c171f5028cb0f21f76d9f9c8..022efea53aa16997fcb7e2d2fb4ff473f189ed5d 100644 --- a/metadata/manager.go +++ b/metadata/manager.go @@ -116,7 +116,6 @@ func findManager(p string, appFS afero.Fs) (*manager, error) { } func initManager(name, rootPath string, k8sSpecFlag, serverURI, namespace *string, incubatorReg registry.Manager, appFS afero.Fs) (*manager, error) { - log.Info("init manager") m, err := newManager(rootPath, appFS) if err != nil { return nil, errors.Wrap(err, "create manager")