From d0499b825e21ba2a458bfc7e4e4b94342d2dc832 Mon Sep 17 00:00:00 2001 From: Noam Gal Date: Sun, 1 Aug 2021 15:42:07 +0300 Subject: [PATCH] v0.2.12 --- CHANGELOG.md | 8 ++++++++ Makefile | 2 +- cmd/commands/app.go | 1 + docs/releases/release_notes.md | 12 ++++++++---- 4 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cf6875c..79da04f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog: +# v0.2.12 + +### New Features: +* Allow sending extra key-value pairs to app create [138](https://github.com/argoproj-labs/argocd-autopilot/issues/138) + +### Documentation fixes: +* update url path to core_concepts docs [#141](https://github.com/argoproj-labs/argocd-autopilot/pull/141) + # v0.2.11 ### Bug fixes: diff --git a/Makefile b/Makefile index cfb9239a..81af6971 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.2.11 +VERSION=v0.2.12 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/cmd/commands/app.go b/cmd/commands/app.go index 55a2577c..c8d102a0 100644 --- a/cmd/commands/app.go +++ b/cmd/commands/app.go @@ -218,6 +218,7 @@ func RunAppCreate(ctx context.Context, opts *AppCreateOptions) error { log.G(ctx).WithField("timeout", opts.Timeout).Infof("Waiting for '%s' to finish syncing", opts.AppOpts.AppName) fullName := fmt.Sprintf("%s-%s", opts.ProjectName, opts.AppOpts.AppName) + // wait for argocd to be ready before applying argocd-apps stop := util.WithSpinner(ctx, fmt.Sprintf("waiting for '%s' to be ready", fullName)) if err = waitAppSynced(ctx, opts.KubeFactory, opts.Timeout, fullName, namespace, revision, true); err != nil { diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index 53d306fa..e51d0c5e 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,7 +1,11 @@ -### Bug fixes: -* fixed provider sort order in field description text [#131](https://github.com/argoproj-labs/argocd-autopilot/pull/131) +### New Features: +* Allow sending extra key-value pairs to app create [138](https://github.com/argoproj-labs/argocd-autopilot/issues/138) + +### Documentation fixes: +* update url path to core_concepts docs [#141](https://github.com/argoproj-labs/argocd-autopilot/pull/141) ### Contributors: +- ehf ([ehf](https://github.com/ehf)) - Roi Kramer ([@roi-codefresh](https://github.com/roi-codefresh)) - Noam Gal ([@noam-codefresh](https://github.com/noam-codefresh)) @@ -21,7 +25,7 @@ argocd-autopilot version ### Linux and WSL (using curl): ```bash # download and extract the binary -curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.2.11/argocd-autopilot-linux-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.2.12/argocd-autopilot-linux-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot @@ -33,7 +37,7 @@ argocd-autopilot version ### Mac (using curl): ```bash # download and extract the binary -curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.2.11/argocd-autopilot-darwin-amd64.tar.gz | tar zx +curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.2.12/argocd-autopilot-darwin-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot