Skip to content

Commit 483236e

Browse files
committed
fix(doc): add info about argocd ns config map
Signed-off-by: dkarpele <[email protected]>
1 parent 273e814 commit 483236e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

docs/install/installation.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Let's assume Argo CD runs in `<argocd_namespace>` and you are installing the ima
3939

4040
2. **Configure the Argo CD Namespace**
4141

42-
The controller needs to know where to find Argo CD resources. Edit the `argocd-image-updater-controller` deployment manifest and add the `ARGOCD_NAMESPACE` environment variable to the `argocd-image-updater` container, pointing to the namespace where Argo CD is installed.
42+
The controller needs to know where to find Argo CD resources. Edit the `argocd-image-updater-controller` deployment manifest and add the `ARGOCD_NAMESPACE` environment variable to the `argocd-image-updater-controller` container or add `argocd.namespace` key to the ConfigMap `argocd-image-updater-config`, pointing to the namespace where Argo CD is installed.
4343

4444
```yaml
4545
...
@@ -49,6 +49,15 @@ Let's assume Argo CD runs in `<argocd_namespace>` and you are installing the ima
4949
...
5050
```
5151

52+
or
53+
54+
```yaml
55+
...
56+
data:
57+
argocd.namespace: <argocd_namespace>
58+
...
59+
```
60+
5261
Alternatively, you can add the `--argocd-namespace=<argocd_namespace>` flag to the container's `command` arguments in the deployment manifest.
5362
5463
3. **Adjust ClusterRoleBinding**

0 commit comments

Comments
 (0)