forked from bregman-arie/devops-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
abregman
committed
Oct 23, 2022
1 parent
65b0e6f
commit c9cfbf9
Showing
7 changed files
with
99 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# ArgoCD | ||
|
||
## Commands | ||
|
||
* login: `argocd login <ADDRESS>` | ||
* version: `argocd version` | ||
|
||
### Apps | ||
|
||
* create an application: | ||
|
||
``` | ||
argocd app create {APP NAME} \ | ||
--project {PROJECT} \ | ||
--repo {GIT REPO} \--path {APP FOLDER} \ | ||
--dest-namespace {NAMESPACE} \ | ||
--dest-server {SERVER URL} | ||
``` | ||
* app list: `argocd app list` | ||
* app detailed info: `argocd app get <APP NAME>` | ||
|
||
* sync app: `argocd app sync <APP NAME>` | ||
* app history: `argocd app history <APP NAME>` | ||
* delete app: `argocd app delete <APP NAME>` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
https://opengitops.dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters