argo-examples/readme.md
2022-12-16 13:00:06 -08:00

62 lines
1.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Install argo cd via helm
link to youtube video...
# Access
### Get instructions
```
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
```
### Forward Ports
```
k get services -n argocd
kubectl port-forward service/argocd-server -n argocd 8080:443
```
### Get Credentials
```
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d
```
# Install ArgoCD CLI / Login via CLI
```
brew install argocd
kubectl port-forward svc/argocd-server -n argocd 8080:443
argocd login 127.0.0.1:8080
```
# Command Cheat sheet
```
argocd app create //Create a new Argo CD application.
argocd app list //List all applications in Argo CD.
argocd app logs <appname> //Get the applications log output.
argocd app get <appname> //Get information about an Argo CD application.
argocd app diff <appname> //Compare the applications configuration to its source repository.
argocd app sync <appname> //Synchronize the application with its source repository.
argocd app history<appname> //Get information about an Argo CD application.
argocd app rollback <appname> //Rollback to a previous version
argocd app set <appname> //Set the applications configuration.
argocd app delete <appname> //Delete an Argo CD application.
```
# Example Commands:
argocd app list
```
argocd app create webapp-kustom-prod \
--repo https://github.com/devopsjourney1/argo-examples.git \
--path kustom-webapp/overlays/prod --dest-server https://kubernetes.default.svc \
--dest-namespace prod
```
## Get started
https://argo-cd.readthedocs.io/en/stable/getting_started/