Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
rotem-codefresh committed May 9, 2022
1 parent 1b9637a commit 9ba4ca5
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog:

# v0.3.7
* docs: fix edit url to use main branch (#300)
* adding --recover flag to bootstrap command for installing from an existing repo

# v0.3.6
* fixed extracting email from github token
* support labels for bootstrap namespace
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=v0.3.6
VERSION=v0.3.7
OUT_DIR=dist

CLI_NAME?=argocd-autopilot
Expand Down
8 changes: 8 additions & 0 deletions docs/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ Execute the port forward command, and browse to http://localhost:8080. Log in us

![Step 1](assets/getting_started_1.png)

### Recovering Argo-cd from an existing repository
```
argocd-autopilot repo bootstrap --recover \
--app "github.com/git-user/repo-name/bootstrap" #optional
```

In case of a cluster failure, you can recover argo-cd from an existing repository using `--recover` flag. You can optionally use it with `--app` flag to specify the path to the existing argo-cd manifests.

### Running Applications:
* autopilot-bootstrap - References the `bootstrap` directory in the GitOps repository, and manages the other 2 applications
* argo-cd - References the `bootstrap/argo-cd` folder, and manages the Argo CD deployment itself (including Argo CD ApplicationSet)
Expand Down
12 changes: 6 additions & 6 deletions docs/releases/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
### Changes
* fixed extracting email from github token
* support labels for bootstrap namespace
* docs: fix edit url to use main branch (#300)
* adding --recover flag to bootstrap command for installing from an existing repo

### Contributors:
- Noam Gal ([@noam-codefresh](https://github.com/noam-codefresh))
- TAKAHASHI Shuuji ([@shuuji3](https://github.com/shuuji3))
- Rotem Cohen ([@rotem-codefresh](https://github.com/rotem-codefresh))

## Installation:
Expand Down Expand Up @@ -43,7 +43,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.3.6/argocd-autopilot-linux-amd64.tar.gz | tar zx
curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.3.7/argocd-autopilot-linux-amd64.tar.gz | tar zx

# move the binary to your $PATH
mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot
Expand All @@ -55,7 +55,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.3.6/argocd-autopilot-darwin-amd64.tar.gz | tar zx
curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.3.7/argocd-autopilot-darwin-amd64.tar.gz | tar zx

# move the binary to your $PATH
mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot
Expand All @@ -70,5 +70,5 @@ When using the Docker image, you have to provide the `.kube` and `.gitconfig` di
docker run \
-v ~/.kube:/home/autopilot/.kube \
-v ~/.gitconfig:/home/autopilot/.gitconfig \
-it quay.io/argoprojlabs/argocd-autopilot:v0.3.6 <cmd> <flags>
-it quay.io/argoprojlabs/argocd-autopilot:v0.3.7 <cmd> <flags>
```

0 comments on commit 9ba4ca5

Please sign in to comment.