Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 943 Bytes

File metadata and controls

27 lines (20 loc) · 943 Bytes
sidebar_position 1
title GitOps Introduction
description Learn about GitOps and its benefits.
tags
GitOps
Kubernetes
Continuous Delivery
keywords
GitOps
Kubernetes
Continuous Delivery
slug /gitops

GitOps is a way of managing Kubernetes clusters using Git as the source of truth.

Benefits of GitOps

  • History of changes to the cluster is stored in Git
  • Rollback to a previous version of the cluster is easy
  • Changes to the cluster can be reviewed before they are applied
  • Changes to the cluster can be tested before they are applied
  • Changes to the cluster can be automated

GitOps Tools

  • ArgoCD is a git controller that can be used to deploy applications to a Kubernetes cluster.

What's next?