Pravesh Sudhapraveshstwt.hashnode.dev·7 hours agoDeploying a Voting App with ArgoCD and Kubernetes: A Beginner-Friendly Guide💡 Introduction: Welcome to the world of DevOps! In this blog, we’ll embark on an exciting journey to build a full-fledged CI/CD project from scratch. We’ll start by creating an EC2 instance to serve as our working environment. From there, we’ll clon...Discuss·1 likeDocker
Merlin Sahamerlin.microworka.com·Nov 6, 2024Setting up ArgoCD on Private Google Kubernetes Engine Cluster for GitOps DeploymentArgoCD is a popular open-source tool for implementing GitOps principles and managing Kubernetes resources declaratively using Git as a single source of truth. In this blog post, we'll learn how to deploy ArgoCD on a private Google Kubernetes Engine (...DiscussArgoCD
Mwanthi Danielbughunters.hashnode.dev·Nov 5, 2024CICD: Microservices Deployment on a Scalable Amazon EKS Cluster with Jenkins, ArgoCD, Terraform, Prometheus, and GrafanaIntroduction This project implements a fully automated workflow for building and deploying a monorepo-based microservices architecture. Using Jenkins and ArgoCD, we will develop an efficient CI/CD workflows to automate the building process of various...Discuss·1 like·65 readsAWS
Muhammad Ahmadmuhammadahmad.hashnode.dev·Oct 28, 2024DevSecOps Project - Deploy Netflix Clone on Cloud using JenkinsPhase 1: Initial Setup and Deployment Step 1: Launch EC2 (Ubuntu 22.04): Provision an EC2 instance on AWS with Ubuntu 22.04. Connect to the instance using SSH. Step 2: Clone the Code: Update all the packages and then clone the code. Clone your ...Discuss·162 readsDevops
Md Shahriyar Al Mustakim Mitulmitul-shahriyar.hashnode.dev·Oct 25, 2024Kubernetes 101: Part 10Assume you team wants to release a new feature for an app but it takes a lot of time to fix bugs, test them etc. To solve this issue, we can use Continuous Integration (CI) and Continuous Deployment (CD) CI ensures that every code is built and teste...DiscussJenkinX
Ferris Hallferrishall.dev·Oct 22, 2024GitOps with GitHub Actions and Argo CDThose of you who read my previous post where I tried out Flux CD and Argo CD will know I have been tinkering with automated deployments to my homelab Kubernetes cluster/s. Recently I picked up a short quickstart e-book on GitOps which I thought looke...Discuss·3 likes·173 readsGitHub
Radhika's Blogradhikajessy.hashnode.dev·Oct 22, 2024End-to-End CI/CD Implementation using Jenkins, Docker, Argo CD, KubernetesImplementing an end-to-end Java-based application using Jenkins, Docker, SonarQube, Argo CD, and Kubernetes involves several steps. Here's a comprehensive guide to help you set up the entire pipeline, from development to deployment: Prerequisites 1. ...DiscussDevops
Kilokiloai.hashnode.dev·Oct 20, 2024Centralized ArgoCDKubernetes đã trở thành một công cụ không thể thiếu trong việc container hóa và triển khai ứng dụng. Tuy nhiên, khi số lượng cluster Kubernetes tăng lên, việc quản lý chúng một cách thủ công trở nên phức tạp và dễ xảy ra sai sót. ArgoCD, với vai trò ...DiscussCI/CDArgoCD
Kilokiloai.hashnode.dev·Oct 20, 2024Tìm Hiểu Core và Project trong ArgoCD: Một Hướng Dẫn Cơ BảnTrong hệ sinh thái Kubernetes, việc quản lý hàng chục hoặc thậm chí hàng trăm ứng dụng trở thành một thách thức lớn. Điều này đặc biệt đúng khi các ứng dụng cần được triển khai liên tục và tự động, đồng thời phải đảm bảo tính nhất quán. Để giải quyết...DiscussCI/CDArgoCD
Taegu Kangktg0210.hashnode.dev·Oct 18, 2024Checking the initial password of ArgoCD installed on k8soutline The initial password for ArgoCD installed on k8s is generated randomly. how-to kubectl -n <argocd-namespace> get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 --decodeDiscussAWS EKS(k8s)Checking the initial password of ArgoCD installed on k8s