https://github.com/princebansal7/gitops-argocd-k8s
GitOps repo for deployment and other manifests
https://github.com/princebansal7/gitops-argocd-k8s
argocd gitops k8s
Last synced: 11 months ago
JSON representation
GitOps repo for deployment and other manifests
- Host: GitHub
- URL: https://github.com/princebansal7/gitops-argocd-k8s
- Owner: princebansal7
- Created: 2025-07-25T07:40:15.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-07-25T10:09:11.000Z (11 months ago)
- Last Synced: 2025-07-25T13:31:53.210Z (11 months ago)
- Topics: argocd, gitops, k8s
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GitOps with ArgoCD
- This repository is for `argocd` manifests reference => add repo specific folders like `npx-app-manifests` and add manifests there.
- To install `argocd` on k8s cluster
- Use below commands
```bash
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
```
- Install using the marketplace on cloud providers
- Port forwarding to access `argocd UI`
```bash
kubectl port-forward svc/argocd-server -n argocd 8080:443
```
- On login dashboard username is `admin` for password use below commands
```bash
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}"
```
- As password is stored as **secret** by `argocd` hence it is `base64` encoded, to decode use below command
```bash
echo "" | base64 -d
```
- Once logged in create new application with your repository URL