github.com/argoproj/argo-cd@v1.8.7/docs/user-guide/commands/argocd_app_create.md (about) 1 ## argocd app create 2 3 Create an application 4 5 ### Synopsis 6 7 Create an application 8 9 ``` 10 argocd app create APPNAME [flags] 11 ``` 12 13 ### Examples 14 15 ``` 16 17 # Create a directory app 18 argocd app create guestbook --repo https://github.com/argoproj/argocd-example-apps.git --path guestbook --dest-namespace default --dest-server https://kubernetes.default.svc --directory-recurse 19 20 # Create a Jsonnet app 21 argocd app create jsonnet-guestbook --repo https://github.com/argoproj/argocd-example-apps.git --path jsonnet-guestbook --dest-namespace default --dest-server https://kubernetes.default.svc --jsonnet-ext-str replicas=2 22 23 # Create a Helm app 24 argocd app create helm-guestbook --repo https://github.com/argoproj/argocd-example-apps.git --path helm-guestbook --dest-namespace default --dest-server https://kubernetes.default.svc --helm-set replicaCount=2 25 26 # Create a Helm app from a Helm repo 27 argocd app create nginx-ingress --repo https://kubernetes-charts.storage.googleapis.com --helm-chart nginx-ingress --revision 1.24.3 --dest-namespace default --dest-server https://kubernetes.default.svc 28 29 # Create a Kustomize app 30 argocd app create kustomize-guestbook --repo https://github.com/argoproj/argocd-example-apps.git --path kustomize-guestbook --dest-namespace default --dest-server https://kubernetes.default.svc --kustomize-image gcr.io/heptio-images/ks-guestbook-demo:0.1 31 32 # Create a app using a custom tool: 33 argocd app create ksane --repo https://github.com/argoproj/argocd-example-apps.git --path plugins/kasane --dest-namespace default --dest-server https://kubernetes.default.svc --config-management-plugin kasane 34 35 ``` 36 37 ### Options 38 39 ``` 40 --allow-empty Set allow zero live resources when sync is automated 41 --auto-prune Set automatic pruning when sync is automated 42 --config-management-plugin string Config management plugin name 43 --dest-name string K8s cluster Name (e.g. minikube) 44 --dest-namespace string K8s target namespace (overrides the namespace specified in the ksonnet app.yaml) 45 --dest-server string K8s cluster URL (e.g. https://kubernetes.default.svc) 46 --directory-exclude string Set glob expression used to exclude files from application source path 47 --directory-recurse Recurse directory 48 --env string Application environment to monitor 49 -f, --file string Filename or URL to Kubernetes manifests for the app 50 --helm-chart string Helm Chart name 51 --helm-set stringArray Helm set values on the command line (can be repeated to set several values: --helm-set key1=val1 --helm-set key2=val2) 52 --helm-set-file stringArray Helm set values from respective files specified via the command line (can be repeated to set several values: --helm-set-file key1=path1 --helm-set-file key2=path2) 53 --helm-set-string stringArray Helm set STRING values on the command line (can be repeated to set several values: --helm-set-string key1=val1 --helm-set-string key2=val2) 54 --helm-version string Helm version 55 -h, --help help for create 56 --jsonnet-ext-var-code stringArray Jsonnet ext var 57 --jsonnet-ext-var-str stringArray Jsonnet string ext var 58 --jsonnet-libs stringArray Additional jsonnet libs (prefixed by repoRoot) 59 --jsonnet-tla-code stringArray Jsonnet top level code arguments 60 --jsonnet-tla-str stringArray Jsonnet top level string arguments 61 --kustomize-common-annotation stringArray Set common labels in Kustomize 62 --kustomize-common-label stringArray Set common labels in Kustomize 63 --kustomize-image stringArray Kustomize images (e.g. --kustomize-image node:8.15.0 --kustomize-image mysql=mariadb,alpine@sha256:24a0c4b4a4c0eb97a1aabb8e29f18e917d05abfe1b7a7c07857230879ce7d3d) 64 --kustomize-version string Kustomize version 65 -l, --label stringArray Labels to apply to the app 66 --name string A name for the app, ignored if a file is set (DEPRECATED) 67 --nameprefix string Kustomize nameprefix 68 --namesuffix string Kustomize namesuffix 69 -p, --parameter stringArray set a parameter override (e.g. -p guestbook=image=example/guestbook:latest) 70 --path string Path in repository to the app directory, ignored if a file is set 71 --project string Application project name 72 --release-name string Helm release-name 73 --repo string Repository URL, ignored if a file is set 74 --revision string The tracking source branch, tag, commit or Helm chart version the application will sync to 75 --revision-history-limit int How many items to keep in revision history (default 10) 76 --self-heal Set self healing when sync is automated 77 --sync-option Prune=false Add or remove a sync options, e.g add Prune=false. Remove using `!` prefix, e.g. `!Prune=false` 78 --sync-policy string Set the sync policy (one of: none, automated (aliases of automated: auto, automatic)) 79 --upsert Allows to override application with the same name even if supplied application spec is different from existing spec 80 --validate Validation of repo and cluster (default true) 81 --values stringArray Helm values file(s) to use 82 --values-literal-file string Filename or URL to import as a literal Helm values block 83 ``` 84 85 ### Options inherited from parent commands 86 87 ``` 88 --auth-token string Authentication token 89 --client-crt string Client certificate file 90 --client-crt-key string Client certificate key file 91 --config string Path to Argo CD config (default "/home/user/.argocd/config") 92 --grpc-web Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. 93 --grpc-web-root-path string Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. Set web root. 94 -H, --header strings Sets additional header to all requests made by Argo CD CLI. (Can be repeated multiple times to add multiple headers, also supports comma separated headers) 95 --insecure Skip server certificate and domain verification 96 --logformat string Set the logging format. One of: text|json (default "text") 97 --loglevel string Set the logging level. One of: debug|info|warn|error (default "info") 98 --plaintext Disable TLS 99 --port-forward Connect to a random argocd-server port using port forwarding 100 --port-forward-namespace string Namespace name which should be used for port forwarding 101 --server string Argo CD server address 102 --server-crt string Server certificate file 103 ``` 104 105 ### SEE ALSO 106 107 * [argocd app](argocd_app.md) - Manage applications 108