Product
|
Cloud costs
|
released
December 8, 2022
|
3
min read
|

Why GitOps is Necessary for Cloud-Native Enterprises

Updated

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?

GitOps basics

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

GitOps with ArgoCD and Harness

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:

Tutorial:

We will be using Google Cloud to create a cluster.

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

Create a Kubernetes 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.

Open the link, and you should be able to access the ArgoCD 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.

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 a new app in Argo CD

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. 

Sync in Argo CD

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 through pull

You can verify these changes by going to your cluster and seeing the new changes.

See new changes in your cluster

You can now see two replicas running.

GitOps with Harness

GitOps with Harness

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 side menu

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.

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.

Harness GitOps dashboard

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. 

Want to learn more about how GitOps accelerates application deployment? Chat with us today!

Sign up now

Sign up for our free plan, start building and deploying with Harness, take your software delivery to the next level.

Get a demo

Sign up for a free 14 day trial and take your software development to the next level

Documentation

Learn intelligent software delivery at your own pace. Step-by-step tutorials, videos, and reference docs to help you deliver customer happiness.

Case studies

Learn intelligent software delivery at your own pace. Step-by-step tutorials, videos, and reference docs to help you deliver customer happiness.

Sign up now

Sign up for our free plan, start building and deploying with Harness, take your software delivery to the next level.

Get a demo

Sign up for a free 14 day trial and take your software development to the next level

Documentation

Learn intelligent software delivery at your own pace. Step-by-step tutorials, videos, and reference docs to help you deliver customer happiness.

Case studies

Learn intelligent software delivery at your own pace. Step-by-step tutorials, videos, and reference docs to help you deliver customer happiness.

We want to hear from you

Enjoyed reading this blog post or have questions or feedback?
Share your thoughts by creating a new topic in the Harness community forum.

Sign up for our monthly newsletter

Subscribe to our newsletter to receive the latest Harness content in your inbox every month.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Continuous Integration
Continuous Delivery & GitOps