GitOps for Devs - Part 2: Navigating the Code

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • album-app-config

    This repository contains Kubernetes configurations for deploying the Album App, which consists of both frontend and backend components. The configurations are based on Helm charts, and they are intended to be used in a GitOps workflow with ArgoCD.

  • # Backend Application apiVersion: argoproj.io/v1alpha1 kind: Application metadata: name: album-app-backend # Name of the ArgoCD application namespace: argocd # Namespace where the ArgoCD application resides finalizers: - resources-finalizer.argocd.argoproj.io # Action to be taken when deleting the resource spec: destination: namespace: album-app # Deployment target namespace for the backend application server: https://kubernetes.default.svc # Kubernetes server for deployment project: album-app # Project to which the backend application belongs source: path: backend # Directory containing backend code/configuration repoURL: https://github.com/krishanthisera/album-app-config # Git repository URL targetRevision: HEAD # Target revision of the repository --- # Frontend Application apiVersion: argoproj.io/v1alpha1 kind: Application metadata: name: album-app-frontend # Name of the ArgoCD application namespace: argocd # Namespace where the ArgoCD application resides finalizers: - resources-finalizer.argocd.argoproj.io # Action to be taken when deleting the resource spec: destination: namespace: album-app # Deployment target namespace for the frontend application server: https://kubernetes.default.svc # Kubernetes server for deployment project: album-app # Project to which the frontend application belongs source: path: frontend # Directory containing frontend code/configuration repoURL: https://github.com/krishanthisera/album-app-config # Git repository URL targetRevision: HEAD # Target revision of the repository

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts