Skip to main content

How to create new application

This page is under construction

Adding a New Application​

  1. Create application directory:
mkdir applications/my-new-app
  1. Define Helm chart:
# applications/my-new-app/Chart.yaml
apiVersion: v2
name: my-new-app
version: 0.1.0
dependencies:
- name: chart
version: 0.1.0
repository: file://../../_chart
  1. Configure ArgoCD behavior:
# applications/my-new-app/argo.yaml
destination: all
namespace: my-app-namespace
autosync: true
  1. Set application values:
# applications/my-new-app/values.yaml
chart:
image: my-app:latest
port: 8080
  1. Commit and push - ArgoCD will automatically discover and deploy!