Real Time DevOps Project | Deploy to Kubernetes Using Jenkins | End to End DevOps Project | CICD

This page summarizes the projects mentioned and recommended in the original post on dev.to

InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  1. register-app

    Here is GitHub repository, you can fork it to your account

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. eksctl

    Discontinued The official CLI for Amazon EKS [Moved to: https://github.com/eksctl-io/eksctl] (by weaveworks)

    //Install AWS Cli on the above EC2 $ curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" $ apt install unzip $ unzip awscliv2.zip $ sudo ./aws/install $ /usr/local/bin/aws --version //Installing kubectl $ curl -O https://s3.us-west-2.amazonaws.com/amazon-eks/1.27.1/2023-04-19/bin/linux/amd64/kubectl $ ll $ chmod +x ./kubectl //Gave executable permisions $ mv kubectl /bin //Because all our executable files are in /bin $ kubectl version --output=yaml $ curl --silent --location "https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp $ cd /tmp $ ll $ sudo mv /tmp/eksctl /bin $ eksctl version

  4. argo-cd

    Declarative Continuous Deployment for Kubernetes

    $ kubectl create namespace argocd //Next, let's apply the yaml configuration files for ArgoCd $ kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml //Now we can view the pods created in the ArgoCD namespace. $ kubectl get pods -n argocd //To interact with the API Server we need to deploy the CLI: $ curl --silent --location -o /usr/local/bin/argocd https://github.com/argoproj/argo-cd/releases/download/v2.4.7/argocd-linux-amd64 $ chmod +x /usr/local/bin/argocd //Expose argocd-server $ kubectl patch svc argocd-server -n argocd -p '{"spec": {"type": "LoadBalancer"}}' //Wait about 2 minutes for the LoadBalancer creation $ kubectl get svc -n argocd //Get pasword and decode it. $ kubectl get secret argocd-initial-admin-secret -n argocd -o yaml $ echo WXVpLUg2LWxoWjRkSHFmSA== | base64 --decode

  5. Note: We need another repository and can be forked from https://github.com/MSFaizi/gitops-register-app.git

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Configuring ArgoCD on Amazon EKS

    2 projects | dev.to | 17 Apr 2021
  • Argo CD v3.0.0

    1 project | news.ycombinator.com | 7 May 2025
  • The Fun Kubernetes: Launch Your First Kubernetes App on Amazon EKS

    1 project | dev.to | 6 May 2025
  • "Argo CD: A GitOps Tool for Kubernetes Continuous Deployment"

    1 project | dev.to | 22 Mar 2025
  • Click-to-Cluster: GitOps EKS Provisioning

    4 projects | dev.to | 4 Mar 2025

Did you know that Go is
the 4th most popular programming language
based on number of references?