Back to Browse

Install Argo CD on KUBERNETES | Hindi

24 views
Jan 21, 2026
23:02

Install Argo CD on KUBERNETES | Hindi --------------------------------------------------- Create Argo CD namespace kubectl create namespace argocd Apply Argo CD manifests kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml Wait for pods: kubectl get pods -n argocd (All pods should reach Running.) 6. Access Argo CD UI (Local) Option A: Port Forward (Simplest) kubectl port-forward svc/argocd-server -n argocd 8080:443 Open browser: https://localhost:8080 Ignore the self-signed certificate warning. Option B: Change Service to NodePort (Optional) kubectl patch svc argocd-server -n argocd \-p '{"spec": {"type": "NodePort"}}' Find port: kubectl get svc argocd-server -n argocd 7. Get Initial Admin Password kubectl get secret argocd-initial-admin-secret -n argocd \ -o jsonpath="{.data.password}" | base64 -d Login: Username: admin Password: (output from above) 8. Install Argo CD CLI (Optional but Recommended) curl -sSL -o argocd \ https://github.com/argoproj/argo-cd/releases/latest/download/argocd-linux-amd64 chmod +x argocd sudo mv argocd /usr/local/bin/ Verify: argocd version Login via CLI: argocd login localhost:8080 9. Verify Installation kubectl get all -n argocd Kind single-node cluster Argo CD running UI + CLI access 10. Cleanup (If Needed) kind delete cluster --name argocd-cluster πŸ”” Subscribe to my channel for more content πŸ‘‰https://www.youtube.com/@learningcurve_tutorials BiAQB0gcJCSkKAYcqIYzv "πŸ“Œ MS-102_Microsoft Office365 Training-Day1 πŸŽ₯ Watch here: https://youtu.be/gz3sjNONnvU "πŸ“Œ MS-102_Microsoft Office365 Admin Center Interface-Day 2 πŸŽ₯ Watch here: https://youtu.be/h8N4xMnhvro "πŸ“Œ Office 365 License Types | Day 3 πŸŽ₯ Watch here: https://youtu.be/MhxnGOCMt8M "πŸ“Œ Setup Roles/Users Office365 Account -Day 4 πŸŽ₯ Watch here: https://youtu.be/ZChHBTz4rX0 "πŸ“Œ How to Assign Admin Roles to users in Microsoft 365 - Day 5 πŸŽ₯ Watch here: https://youtu.be/2qKEVgy1hQI πŸ“Œ How to Implement role groups in Microsoft 365 - Day 6 πŸŽ₯ Watch here: https://youtu.be/zu_bsJEOLAs #Microsoft365 #Office365 #SysAdmin #Learning" "πŸ“Œ What Is Microsoft Entra ID - Day 7 πŸŽ₯ Watch here: https://youtu.be/wfqkZ8LuJWI #Microsoft365 #Office365 #SysAdmin #Learning" "πŸ“Œ How to Add Users/Assign License in EntraId -Day 8 πŸŽ₯ Watch here: https://youtu.be/sd1KsNgkaTI #Microsoft365 #Office365 #SysAdmin #Learning" "πŸ“Œ How to Add/Remove Members to Security Groups in Entra ID - Day 9 πŸŽ₯ Watch here: https://youtu.be/wq4lOXAnyg4 #Microsoft365 #Office365 #SysAdmin #Learning" "πŸ“Œ How to Check the Audit/Sign-In Logs in Entra portal - Day 10 πŸŽ₯ Watch here: https://youtu.be/jkVBLtvp6is #Microsoft365 #Office365 #SysAdmin #Learning" "πŸ“Œ How to Create Administrative Units in Microsoft Entra ID - Day 11 πŸŽ₯ Watch here: https://youtu.be/cThR4wM-RBI #Microsoft365 #Office365 #SysAdmin #Learning" "πŸ“Œ What is SSPR & Configure MFA for MS365 Users - Day 13 πŸŽ₯ Watch here: https://youtu.be/Yz_Z15HjkeU "πŸ“Œ How to Connect On-premise User to MS Office365 -Day 14 πŸŽ₯ Watch here: https://youtu.be/wv4OId5ftDw "πŸ“Œ Installing Windows Server 2025 VM in VirtualBox - Day 15 πŸŽ₯ Watch here: https://youtu.be/DAnjQR5BcEI "πŸ“Œ How to Install Windows Server 2025 in Oracle VirtualBox - Day 17 πŸŽ₯ Watch here: https://youtu.be/cWWnc70IaLI "πŸ“Œ How to Install ADDS services on Windows Server 2025 - Day 18 πŸŽ₯ Watch here: https://youtu.be/dwNyxeFoZy8 "πŸ“Œ Setup AD DS server - Day 19 πŸŽ₯ Watch here: https://youtu.be/ag1gcxg0dsE "πŸ“Œ Set Up Windows Server 2025 as an Active Directory Domain Services (AD DS) server - Day 20 πŸŽ₯ Watch here: https://youtu.be/cF2vZWaI_FY "πŸ“Œ Create Dummy Users Using Active Directory Users and Computers - Day 21 πŸŽ₯ Watch here: https://youtu.be/2evn7FkJvVA "πŸ“Œ Azure AD Connect Setup | Microsoft Entra Connect Health - Day 22 πŸŽ₯ Watch here: https://youtu.be/0E3A5ICcBK4 "πŸ“Œ How To Add Guest Additions in Oracle Virtual Box - Day 23 πŸŽ₯ Watch here: https://youtu.be/vzBA8DnQlpw "πŸ“Œ Connect Microsoft Entra Connect Agent in Server 2025 - Day24 πŸŽ₯ Watch here: https://youtu.be/4kVJl9_Y5aQ "πŸ“Œ How to Enroll Sync AD Users to MSOffice365 EntraID - Day 25 πŸŽ₯ Watch here: https://youtu.be/53TqwvbVFZM

Download

0 formats

No download links available.

Install Argo CD on KUBERNETES | Hindi | NatokHD