Back to articles
Codefresh Has a Free API: GitOps CI/CD Built for Kubernetes from Day One
How-ToDevOps

Codefresh Has a Free API: GitOps CI/CD Built for Kubernetes from Day One

via Dev.to DevOpsAlex Spinov

What is Codefresh? Codefresh is a Kubernetes-native CI/CD platform built by the creators of Argo (ArgoCD, Argo Workflows, Argo Rollouts, Argo Events). It combines the power of the Argo ecosystem with an enterprise-grade platform for GitOps deployments. Why Codefresh? Free tier — 3 builds/month for open source, free GitOps runtime Argo-native — ArgoCD, Argo Workflows, Argo Rollouts all integrated Kubernetes-first — every build runs in a K8s pod Built-in Docker registry — free private registry included GitOps dashboard — unified view of all deployments across clusters Quick Start # Install Codefresh CLI npm install -g codefresh # Authenticate codefresh auth create-context --api-key YOUR_API_KEY # Install GitOps runtime codefresh install gitops-runtime \ --repo https://github.com/your-org/gitops-config \ --git-token YOUR_GITHUB_TOKEN CI Pipeline (codefresh.yml) version : " 1.0" stages : - build - test - deploy steps : clone : type : git-clone repo : your-org/your-app revision : ${{CF_BRAN

Continue reading on Dev.to DevOps

Opens in a new tab

Read Full Article
7 views

Related Articles