Skip to content

Commit 405d6e0

Browse files
author
Diego Luisi
committed
⚡ Add Readme
1 parent 4be3529 commit 405d6e0

File tree

2 files changed

+81
-1
lines changed

2 files changed

+81
-1
lines changed

README.md

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
[![main](https://github.com/devxp-tech/gitops/actions/workflows/main.yaml/badge.svg)](https://github.com/devxp-tech/gitops/actions/workflows/main.yaml)
2+
[![Quality Gate Status](https://sonar.devxp-tech.io/api/project_badges/measure?project=gitops&metric=alert_status&token=sqb_f6faa6baaf2901c484b2fc037eb06ad36b704eaa)](https://sonar.devxp-tech.io/dashboard?id=gitops)
3+
[![App Status](https://argocd.devxp-tech.io/api/badge?name=argo-cd&revision=true)](https://argocd.diegoluisi.eti.br/applications/argo-cd)
4+
![GitHub last commit](https://img.shields.io/github/last-commit/devxp-tech/gitops)
5+
![GitHub top language](https://img.shields.io/github/languages/top/devxp-tech/gitops)
6+
![GitHub issues](https://img.shields.io/github/issues-raw/devxp-tech/gitops)
7+
![GitHub](https://img.shields.io/github/license/devxp-tech/gitops)
8+
![Twitter Follow](https://img.shields.io/twitter/follow/devxp_tech?style=social)
9+
# ⚙️ GitOps
10+
11+
GitOps is a set of best practices where the entire code delivery process is controlled via Git, including infrastructure and application definition as code and automation to complete updates and rollbacks.
12+
13+
The core idea of GitOps is to have a git repository that contains declarative descriptions of the desired infrastructure in the production environment and has an automated process to make the production environment match the state described in that repository.
14+
15+
Now that we know the central idea, let's go back a little bit to the acronym GitOps and let's understand the role of git, the role of ops and how they meet.
16+
17+
The Key GitOps Principles:
18+
19+
- The entire system (infrastructure and applications) is described declaratively.
20+
- The canonical desired system state is versioned in Git.
21+
- Changes approved are automated and applied to the system.
22+
- Software agents ensure correctness and alert on divergence.
23+
24+
### <img align="left" alt="Git" width="18px" src="https://cncf-branding.netlify.app/img/projects/argo/icon/color/argo-icon-color.svg" /> [Argo CD Autopilot](https://argocd-autopilot.readthedocs.io/en/stable/)
25+
26+
New users to GitOps and Argo CD are not often sure how they should structure their repos, add applications, promote apps across environments, and manage the Argo CD installation itself using GitOps.
27+
28+
### Example:
29+
30+
```bash
31+
argocd-autopilot app create argo-events --app github.com/argoproj/argo-events/blob/master/manifests/namespace-install.yaml -p ops --wait-timeout 2m
32+
```
33+
34+
### <img align="left" alt="Git" width="18px" src="https://cncf-branding.netlify.app/img/projects/argo/icon/color/argo-icon-color.svg" /> [Argo CD](https://argo-cd.readthedocs.io/en/stable/)
35+
36+
Argo CD automates the deployment of the desired application states in the specified target environments. Application deployments can track updates to branches, tags, or pinned to a specific version of manifests at a Git commit. See tracking strategies for additional details about the different tracking strategies available.
37+
38+
### <img align="left" alt="Git" width="18px" src="https://cncf-branding.netlify.app/img/projects/argo/icon/color/argo-icon-color.svg" /> [Argo Events](https://argoproj.github.io/argo-events/)
39+
40+
Argo Events is an event-driven workflow automation framework for Kubernetes which helps you trigger K8s objects, Argo Workflows, Serverless workloads, etc. on events from a variety of sources like webhooks, S3, schedules, messaging queues, gcp pubsub, sns, sqs, etc.
41+
42+
### <img align="left" alt="Git" width="18px" src="https://cncf-branding.netlify.app/img/projects/argo/icon/color/argo-icon-color.svg" /> [Argo Rollouts](https://argoproj.github.io/argo-rollouts/)
43+
44+
Argo Rollouts is a Kubernetes controller and set of CRDs which provide advanced deployment capabilities such as blue-green, canary, canary analysis, experimentation, and progressive delivery features to Kubernetes.
45+
46+
Argo Rollouts (optionally) integrates with ingress controllers and service meshes, leveraging their traffic shaping abilities to gradually shift traffic to the new version during an update. Additionally, Rollouts can query and interpret metrics from various providers to verify key KPIs and drive automated promotion or rollback during an update.
47+
48+
### <img align="left" alt="Git" width="18px" src="https://cncf-branding.netlify.app/img/projects/argo/icon/color/argo-icon-color.svg" /> [Argo Workflows](https://argoproj.github.io/argo-workflows/)
49+
50+
Argo Workflows is an open source container-native workflow engine for orchestrating parallel jobs on Kubernetes. Argo Workflows is implemented as a Kubernetes CRD (Custom Resource Definition).
51+
52+
### 🔩 Tooling
53+
54+
See [Versions](docs/tooling/versions.md).
55+
56+
### 🔨 To Do
57+
58+
See [To Do](docs/to-do.md).
59+
60+
### 🌳 Project Structure
61+
62+
See [Project Structure](docs/project-structure.md).
63+
64+
### 🖊️ Code of Conduct
65+
66+
See [Code of Conduct](docs/CODE-OF-CONDUCT.md).
67+
68+
### 🔒 Security
69+
70+
See [Security](docs/SECURITY.md).
71+
72+
## ✨ Contributions
73+
74+
We ❤️ contributions big or small. [See our guide](contributing.md) on how to get started.
75+
76+
### Thanks to all our contributors
77+
78+
<a href="https://github.com/devxp-tech/gitops/graphs/contributors">
79+
<img src="https://contrib.rocks/image?repo=devxp-tech/gitops" />
80+
</a>

apps/mimir/base/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ helmCharts:
66
includeCRDs: true
77
releaseName: mimir-distributed
88
namespace: monitoring
9-
version: "5.3.0"
9+
version: "5.4.0"
1010
repo: https://grafana.github.io/helm-charts
1111
valuesInline:
1212
fullnameOverride: mimir

0 commit comments

Comments
 (0)