You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/faq.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -139,7 +139,7 @@ See [#1482](https://github.com/argoproj/argo-cd/issues/1482).
139
139
## How often does Argo CD check for changes to my Git or Helm repository ?
140
140
141
141
The default polling interval is 3 minutes (180 seconds).
142
-
You can change the setting by updating the `timeout.reconciliation` value in the [argocd-cm](https://github.com/argoproj/argo-cd/blob/2d6ce088acd4fb29271ffb6f6023dbb27594d59b/docs/operator-manual/argocd-cm.yaml#L279-L282) config map. If there are any Git changes, ArgoCD will only update applications with the [auto-sync setting](user-guide/auto_sync.md) enabled. If you set it to `0` then Argo CD will stop polling Git repositories automatically and you can only use alternative methods such as [webhooks](operator-manual/webhook.md) and/or manual syncs for deploying applications.
142
+
You can change the setting by updating the `timeout.reconciliation` value in the [argocd-cm](https://github.com/argoproj/argo-cd/blob/2d6ce088acd4fb29271ffb6f6023dbb27594d59b/docs/operator-manual/argocd-cm.yaml#L279-L282) config map. If there are any Git changes, Argo CD will only update applications with the [auto-sync setting](user-guide/auto_sync.md) enabled. If you set it to `0` then Argo CD will stop polling Git repositories automatically and you can only use alternative methods such as [webhooks](operator-manual/webhook.md) and/or manual syncs for deploying applications.
143
143
144
144
145
145
## Why Are My Resource Limits `Out Of Sync`?
@@ -194,7 +194,7 @@ argocd ... --insecure
194
194
195
195
## I have configured Dex via `dex.config` in `argocd-cm`, it still says Dex is unconfigured. Why?
196
196
197
-
Most likely you forgot to set the `url` in `argocd-cm` to point to your ArgoCD as well. See also
197
+
Most likely you forgot to set the `url` in `argocd-cm` to point to your Argo CD as well. See also
Copy file name to clipboardexpand all lines: docs/operator-manual/applicationset/Generators-Pull-Request.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -232,7 +232,7 @@ spec:
232
232
-`api`: Optional URL to access the Bitbucket REST API. For the example above, an API request would be made to `https://api.bitbucket.org/2.0/repositories/{workspace}/{repo_slug}/pullrequests`. If not set, defaults to `https://api.bitbucket.org/2.0`
233
233
-`branchMatch`: Optional regexp filter which should match the source branch name. This is an alternative to labels which are not supported by Bitbucket server.
234
234
235
-
If you want to access a private repository, ArgoCD will need credentials to access repository in Bitbucket Cloud. You can use Bitbucket App Password (generated per user, with access to whole workspace), or Bitbucket App Token (generated per repository, with access limited to repository scope only). If both App Password and App Token are defined, App Token will be used.
235
+
If you want to access a private repository, Argo CD will need credentials to access repository in Bitbucket Cloud. You can use Bitbucket App Password (generated per user, with access to whole workspace), or Bitbucket App Token (generated per repository, with access limited to repository scope only). If both App Password and App Token are defined, App Token will be used.
236
236
237
237
To use Bitbucket App Password, use `basicAuth` section.
238
238
-`username`: The username to authenticate with. It only needs read access to the relevant repo.
After that install ArgoCD (there should be only 3 yml file defined above in current directory )
470
+
After that install Argo CD (there should be only 3 yml file defined above in current directory )
471
471
472
472
```bash
473
473
kubectl apply -k ./ -n argocd --wait=true
@@ -712,15 +712,15 @@ Once the DNS change is propagated, you're ready to use Argo with your Google Clo
712
712
713
713
## Authenticating through multiple layers of authenticating reverse proxies
714
714
715
-
ArgoCD endpoints may be protected by one or more reverse proxies layers, in that case, you can provide additional headers through the `argocd` CLI `--header` parameter to authenticate through those layers.
715
+
Argo CD endpoints may be protected by one or more reverse proxies layers, in that case, you can provide additional headers through the `argocd` CLI `--header` parameter to authenticate through those layers.
716
716
717
717
```shell
718
718
$ argocd login <host>:<port> --header 'x-token1:foo' --header 'x-token2:bar' # can be repeated multiple times
719
719
$ argocd login <host>:<port> --header 'x-token1:foo,x-token2:bar' # headers can also be comma separated
720
720
```
721
721
## ArgoCD Server and UI Root Path (v1.5.3)
722
722
723
-
ArgoCD server and UI can be configured to be available under a non-root path (e.g. `/argo-cd`).
723
+
Argo CD server and UI can be configured to be available under a non-root path (e.g. `/argo-cd`).
724
724
To do this, add the `--rootpath` flag into the `argocd-server` deployment command:
Copy file name to clipboardexpand all lines: docs/operator-manual/metrics.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Metrics about applications. Scraped at the `argocd-metrics:8082/metrics` endpoin
7
7
8
8
| Metric | Type | Description |
9
9
|--------|:----:|-------------|
10
-
|`argocd_app_info`| gauge | Information about Applications. It contains labels such as `sync_status` and `health_status` that reflect the application state in ArgoCD. |
10
+
|`argocd_app_info`| gauge | Information about Applications. It contains labels such as `sync_status` and `health_status` that reflect the application state in Argo CD. |
11
11
|`argocd_app_k8s_request_total`| counter | Number of kubernetes requests executed during application reconciliation |
12
12
|`argocd_app_labels`| gauge | Argo Application labels converted to Prometheus labels. Disabled by default. See section below about how to enable it. |
Copy file name to clipboardexpand all lines: docs/user-guide/app_deletion.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ When deleting an Application with this finalizer, the Argo CD application contro
54
54
Adding the finalizer enables cascading deletes when implementing [the App of Apps pattern](../operator-manual/cluster-bootstrapping.md#cascading-deletion).
55
55
56
56
The default propagation policy for cascading deletion is [foreground cascading deletion](https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion).
57
-
ArgoCD performs [background cascading deletion](https://kubernetes.io/docs/concepts/architecture/garbage-collection/#background-deletion) when `resources-finalizer.argocd.argoproj.io/background` is set.
57
+
Argo CD performs [background cascading deletion](https://kubernetes.io/docs/concepts/architecture/garbage-collection/#background-deletion) when `resources-finalizer.argocd.argoproj.io/background` is set.
58
58
59
59
When you invoke `argocd app delete` with `--cascade`, the finalizer is added automatically.
60
60
You can set the propagation policy with `--propagation-policy <foreground|background>`.
Copy file name to clipboardexpand all lines: docs/user-guide/environment-variables.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,6 @@ The following environment variables can be used with `argocd` CLI:
4
4
5
5
| Environment Variable | Description |
6
6
| --- | --- |
7
-
|`ARGOCD_SERVER`| the address of the ArgoCD server without `https://` prefix <br> (instead of specifying `--server` for every command) <br> eg. `ARGOCD_SERVER=argocd.mycompany.com` if served through an ingress with DNS |
8
-
|`ARGOCD_AUTH_TOKEN`| the ArgoCD `apiKey` for your ArgoCD user to be able to authenticate |
7
+
|`ARGOCD_SERVER`| the address of the Argo CD server without `https://` prefix <br> (instead of specifying `--server` for every command) <br> eg. `ARGOCD_SERVER=argocd.mycompany.com` if served through an ingress with DNS |
8
+
|`ARGOCD_AUTH_TOKEN`| the Argo CD `apiKey` for your Argo CD user to be able to authenticate |
9
9
|`ARGOCD_OPTS`| command-line options to pass to `argocd` CLI <br> eg. `ARGOCD_OPTS="--grpc-web"`|
Copy file name to clipboardexpand all lines: docs/user-guide/helm.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -122,7 +122,7 @@ source:
122
122
123
123
## Helm Release Name
124
124
125
-
By default, the Helm release name is equal to the Application name to which it belongs. Sometimes, especially on a centralised ArgoCD,
125
+
By default, the Helm release name is equal to the Application name to which it belongs. Sometimes, especially on a centralised Argo CD,
126
126
you may want to override that name, and it is possible with the `release-name` flag on the cli:
127
127
128
128
```bash
@@ -138,7 +138,7 @@ source:
138
138
```
139
139
140
140
!!! warning "Important notice on overriding the release name"
141
-
Please note that overriding the Helm release name might cause problems when the chart you are deploying is using the `app.kubernetes.io/instance` label. ArgoCD injects this label with the value of the Application name for tracking purposes. So when overriding the release name, the Application name will stop being equal to the release name. Because ArgoCD will overwrite the label with the Application name it might cause some selectors on the resources to stop working. In order to avoid this we can configure ArgoCD to use another label for tracking in the [ArgoCD configmap argocd-cm.yaml](../operator-manual/argocd-cm.yaml) - check the lines describing `application.instanceLabelKey`.
141
+
Please note that overriding the Helm release name might cause problems when the chart you are deploying is using the `app.kubernetes.io/instance` label. Argo CD injects this label with the value of the Application name for tracking purposes. So when overriding the release name, the Application name will stop being equal to the release name. Because Argo CD will overwrite the label with the Application name it might cause some selectors on the resources to stop working. In order to avoid this we can configure Argo CD to use another label for tracking in the [ArgoCD configmap argocd-cm.yaml](../operator-manual/argocd-cm.yaml) - check the lines describing `application.instanceLabelKey`.
Copy file name to clipboardexpand all lines: docs/user-guide/jsonnet.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Jsonnet
2
2
3
-
Any file matching `*.jsonnet` in a directory app is treated as a Jsonnet file. ArgoCD evaluates the Jsonnet and is able to parse a generated object or array.
3
+
Any file matching `*.jsonnet` in a directory app is treated as a Jsonnet file. Argo CD evaluates the Jsonnet and is able to parse a generated object or array.
0 commit comments