DEV Community

Cover image for Getting Started With GitOps For Developers!
Pavan Belagatti
Pavan Belagatti

Posted on • Originally published at harness.io

Getting Started With GitOps For Developers!

GitOps is a methodology for deploying and managing software applications using Git. It is also referred to as "operations-as-code" or "code-driven operations," and it uses the principles of DevOps to streamline software updates across an organization. It basically uses a collaborative software development model involving Git and Kubernetes.

You can also define GitOps as the combination of Git and Ops, a practice where you use the principles of operations to manage your version control system. When we talk about version control, it’s mostly about code in a repository. GitOps takes this one step further by applying principles of operations on top of your version control system.

What is GitOps?

GitOpsImage credits: Inspired by VMware

The term “GitOps” was originally invented and popularized by the engineers at Weaveworks and presented to the world of DevOps as a set of best cloud-native practices coupled with tools from Weaveworks to help developers operate the complex Kubernetes workflows via Git.

GitOps is a cloud-native practice for deploying software in which Git is used as a single source of truth for any deployment resources that happen in the system. Whenever any new deployment rolls out, developers are required to define everything through Git. With this approach, it becomes easier to automate deployments and helps in higher observability. This improves deployment confidence within the DevOps team and boosts overall developer productivity.

GitOps requires declaratively defining the resources through Git so that you can easily maintain the state of your resources. It encourages automating the deployments with minimal or no human interaction and access to roll back quickly to the previous state if something unexpected happens.

GitOps enables developers to push the infrastructure code into the environment repository and notice a change. GitOps performs the needed changes to the environment of the software and infrastructure, then moves it further into the CI/CD pipeline.

There are four basic principles on which GitOps works:

  1. In the form of YAML, defining the whole system in a declarative form.
  2. Using Git as the single source of truth and versioning the canonical desired system/environment state in Git.
  3. Approving changes to the desired state automatically.
  4. Employing Infrastructure as Code (IaC) and ensuring correctness.

Simple GitOps Workflow

GitOps basically works on the principle of making Git the source of truth, including moving everything to code and storing and maintaining everything in Git. When it comes to deployment, make use of an operator to deploy what is configured in Git and Yaml in a declarative fashion. Since all the developers are primarily friendly with Git, GitOps simplifies their complex workflow.

So when it comes to Kubernetes, the app code, container images, and all related manifest files will be stored in Git, and any changes are made through Git as a single source of truth.
GitOps workflow

Ways to Practice GitOps

GitOps can have two deployment strategies: push and pull pipelines. The distinction between them is in the way we ensure the deployment environment matches the desired infrastructure.

  • Push Pipeline Strategy
    CI/CD tools play a vital role here, and many use this strategy where the source code and deployment manifest files are stored in a single repository. Whenever a new update happens, the build pipeline triggers. The pipeline creates the container images and pushes the recent changes to the environment.

  • Pull Pipeline Strategy
    The container image and declarative configuration (that are written in YAML format) changes are pulled into the cluster from inside the cluster amidst the CD engine running inside the cluster.

Advantages of GitOps

  • By employing the GitOps approach, DevOps teams can easily handle disaster recovery and manage it smoothly in case of any catastrophic event.

  • More observability with tracking any changes in the cluster through Git's strong cryptography and correctness.

  • Transparent and straightforward for anybody who knows Git, as it makes use of the declarative configuration to describe every process.

  • GitOps enables continuous and frequent deployments as easily as possible without managing a bunch of tools as everything occurs in and through Git as a single source of truth.

  • Complex Kubernetes upgrades, deployments, and features can be managed more efficiently through GitOps.

  • Since every action will be traced in GitOps through Git, observability will be easy.

  • GitOps empowers higher productivity through the standardization of the GitOps workflow throughout the engineering team.

DevOps Vs. GitOps

DevOps workflows are:

  • Based on the prescriptive model
  • Associated with helping cloud-native principles
  • Reliant on the CI/CD pipeline as the primary tool that drives innovation and automation
  • Flexible. there are many ways to do DevOps, and the approaches are wide open.

In contrast, GitOps workflows are:

  • Declarative
  • Focused on the cloud-native and microservices application principles
  • Git is the primary tool for innovation and automation
  • Strict; A specific procedure is followed and has some degree of correctness, or what is or is not GitOps

DevOps pipeline and GitOps pipeline
DevOps pipelineImage source: TechTarget

GitOps with ArgoCD

GitOps is a cloud-native approach where the entire software delivery process is centred on the usage of Git. In this tutorial, we will see how easy it is to integrate Argo with a Kubernetes cluster and deliver changes in an automated fashion.

Prerequisites:

  • A Kubernetes cluster from any cloud provider (you can also use Minikube or Kind to create a cluster)
  • Argo CD CLI - Check out the official documentation

Tutorial:

We will be using Google Cloud to create a cluster.

First, we need to create a Kubernetes cluster to host our ArgoCD
cluster

Next, we need to create ArgoCD namespace and install all the manifest files onto the cluster that we created.

kubectl create namespace argocd

kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

Download the Argo CD CLI
brew install argocd

It’s time to access the Argo CD API server. We can do this by getting it as a service-type load balancer using the following command.

kubectl patch svc argocd-server -n argocd -p '{"spec": {"type": "LoadBalancer"}}'

Go back to your cluster and the “services and ingress” tab to see the external load balancer.
Loadbalancer server

Open the link, and you should be able to access the ArgoCD UI.
GitOps UI

Now, you need a username and password. The username by default is “admin”, and the password can be generated using the below command.

kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo

Once you provide your login credentials, you should see your ArgoCD setup.
GitOps dashboard

Playing with ArgoCD GitOps: Forking a Git Repo

Let’s Fork a sample repo, for example, like this one found here: https://github.com/argoproj/argocd-example-apps

Once you fork the sample repo, go to your Argo cd setup and create a new app. Add the relevant details.
create GitOps app

Once the app is created, it shows as out of sync in the ArgoCD UI and for that to become in sync, we need to click the ‘SYNC’ button and the app shows as healthy.
GitOps application added

Now, just go back to your forked example repo and change something. Let's say you changed the guestbook-ui-deployment.yaml replicas from 1 to 2. What happens next? The app goes out of sync, and you need to again click the ‘SYNC’ button, and you should see everything getting updated itself through the pull strategy.
sync application

You can verify these changes by going to your cluster and seeing the new changes.
replicas running
You can now see two replicas running.

GitOps Using Harness

Harness and GitOps

First, you will need to sign up for a Free Harness Account and navigate to the GitOps tab.

Navigate to Deployments > GitOps from the side menu.
Harness GitOps

Harness will install Argo CD on your behalf and wire that Argo CD instance to Harness. All you need is a Kubernetes cluster. Now, we need to set up the required things to do GitOps as part of Harness.

Navigate to GitOps > Settings > GitOps Agents.
One by one, you will connect all the required GitOps settings shown below.
GitOps settings

Once everything is connected and verified, you can start deploying applications via Harness GitOps. By taking the famous guestbook example, once the deployment is done, you should see your Harness GitOps dashboard as shown below,
GitOps application on Harness

You can follow this simple Harness GitOps tutorial to see how intuitive and simple it is to deploy applications via Harness GitOps.

GitOps and Complex Application Deployments

We just saw how to use the GitOps methodology to deploy changes to our application. GitOps is already gaining momentum in the cloud-native space, and developers love this approach because of its ease of set-up. In addition, since Git is the primary tool used, the learning curve reduces significantly. Automation is the key to fast and reliable software delivery, and GitOps methodology comes in handy here.

While GitOps may not be the answer for everything cloud-native, I am sure this approach will soon take a prominent stage in the software delivery space. GitOps emphasizes the single point of truth approach by making use of the simple tool that every developer knows, which is Git. Used alongside cloud-native tools such as Kubernetes, GitOps can be an excellent path for achieving true digital transformation. GitOps is here to stay, and its future is bright and shiny. Implementing a proper DevOps process requires a lot of effort. Fortunately, GitOps is here to help.

Latest comments (1)

Collapse
 
adriens profile image
adriens

Thanks a lot for pointing harness I could discover it !