diff --git a/docs/content/guides/deploy-apps/gitops/_index.md b/docs/content/guides/deploy-apps/gitops/_index.md new file mode 100644 index 000000000..46d005064 --- /dev/null +++ b/docs/content/guides/deploy-apps/gitops/_index.md @@ -0,0 +1,9 @@ +--- +type: docs +title: "Radius and GitOps" +linkTitle: "GitOps" +description: "Learn about how Radius is integrated with GitOps tools" +weight: 300 +tags: ["gitops", "continuous", "delivery" "deployment"] +--- + diff --git a/docs/content/guides/deploy-apps/gitops/overview/index.md b/docs/content/guides/deploy-apps/gitops/overview/index.md new file mode 100644 index 000000000..4c5b3747e --- /dev/null +++ b/docs/content/guides/deploy-apps/gitops/overview/index.md @@ -0,0 +1,31 @@ +--- +type: docs +title: "Overview: Radius and GitOps" +linkTitle: "Overview" +description: "Learn about how to leverage GitOps tools to deploy Radius resources" +weight: 100 +categories: "Overview" +tags: ["gitops", "continuous", "delivery" "deployment"] +--- + +Radius integrates seamlessly with GitOps to enhance the continuous deployment and management of cloud-native applications and infrastructure. Currently, Radius supports [Flux](https://fluxcd.io/), with [ArgoCD](https://argoproj.github.io/cd/) support coming in the future. + +## What is GitOps? + +GitOps is a popular set of practices, implemented as popular tools, like [Flux](https://fluxcd.io/) and [ArgoCD](https://argoproj.github.io/cd/), that mitigates these challenges for enterprise application teams that use git for source control and Kubernetes for orchestration of software containers. The core concept of GitOps is to rely on a git repository that serves as a single source of truth: i.e. it contains current declarative descriptions of the required infrastructure for a given production environment. It also contains a description of the workflow required to prevent drift between the repo and the production environment. Using GitOps, developers and operatations can manage applications in production without needing to write custom scripts or maintain complex CD pipelines. + +## GitOps capabilities in Radius + +1. **Declarative Configuration**: GitOps allows users to define their infrastructure and application configurations declaratively in Git repositories. This ensures that the desired state of the system is version-controlled and easily auditable. + +2. **Continuous Deployment**: With GitOps, any changes pushed to the Git repository automatically trigger deployment processes. Radius integrates with GitOps tools to facilitate continuous deployment, ensuring that the production environment always matches the state defined in the repository. + +3. **Drift Detection and Reconciliation**: The GitOps tool continuously monitors the production environment for any drift from the desired state defined in the Git repository. If any discrepancies are detected, Radius will be triggered to automatically reconcile the state to match the repository, maintaining consistency and reliability. + +4. **Enhanced Security and Compliance**: By using Git as the single source of truth, users can ensure that all changes are tracked and auditable, even if they are executed by Radius. This enhances security and compliance, as every change is documented and can be reviewed. + +5. **Scalability and Flexibility**: Radius's integration with GitOps tools supports scalable and flexible deployment strategies. Whether deploying to a single cluster or multiple clusters across different environments, Radius provides a consistent and reliable deployment process. + +## Getting Started + +To get started with using Radius and GitOps, check out the [how-to guide for Flux](TODO). \ No newline at end of file