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/install/reference.md
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Runs the Argo CD Image Updater, possibly in an endless loop.
26
26
27
27
### Flags
28
28
29
-
**--argocd-auth-token *token***
29
+
**--argocd-auth-token *token***
30
30
31
31
Use *token* for authenticating to the Argo CD API. This token must be a base64
32
32
encoded JWT, as generated by Argo CD.
@@ -57,7 +57,7 @@ TLS.
57
57
58
58
Can also be set using the *ARGOCD_PLAINTEXT* environment variable.
59
59
60
-
**--argocd-server-addr *server address***
60
+
**--argocd-server-addr *server address***
61
61
62
62
Connect to the Argo CD API server at *server address*. *server address* must
63
63
be a valid IP address or DNS host name, optionally with a port specification
@@ -79,13 +79,13 @@ for images can only be specified from an environment variable.
79
79
If this flag is set, Argo CD Image Updater won't actually perform any changes
80
80
to workloads it found in need for upgrade.
81
81
82
-
**--health-port *port***
82
+
**--health-port *port***
83
83
84
84
Specifies the local port to bind the health server to. The health server is
85
85
used to provide health and readiness probes when running as K8s workload.
86
86
Use value *0* for *port* to disable launching the health server.
87
87
88
-
**--interval *duration***
88
+
**--interval *duration***
89
89
90
90
Sets the interval for checking whether there are new images available to
91
91
*duration*. *duration* must be given as a valid duration identifier with
@@ -103,40 +103,40 @@ The order of precedence for determining the update interval is as follows:
103
103
2.**`IMAGE_UPDATER_INTERVAL` environment variable:** If the `--interval` flag is not set, the value of the `IMAGE_UPDATER_INTERVAL` environment variable will be used.
104
104
3.**Default value:** If neither the `--interval` flag nor the `IMAGE_UPDATER_INTERVAL` environment variable is set, the default value will be used.
105
105
106
-
**--kubeconfig *path***
106
+
**--kubeconfig *path***
107
107
108
108
Specify the Kubernetes client config file to use when running outside a
109
109
Kubernetes cluster, i.e. `~/.kube/config`. When specified, Argo CD Image
110
110
Updater will use the currently active context in the configuration to connect
111
111
to the Kubernetes cluster.
112
112
113
-
**--loglevel *level***
113
+
**--loglevel *level***
114
114
115
115
Set the log level to *level*, where *level* can be one of `trace`, `debug`,
116
116
`info`, `warn` or `error`.
117
117
118
118
Can also be set using the *IMAGE_UPDATER_LOGLEVEL* environment variable.
119
119
120
-
**--match-application-name *pattern***
120
+
**--match-application-name *pattern***
121
121
122
122
Only process applications that have a valid annotation and matches the given
123
123
*pattern*. The *pattern* is a simple glob pattern and supports file system
124
124
style wildcards, i.e. `*-staging` would match any application name with a
125
125
suffix of `-staging`. Can be specified multiple times to define more than
126
126
one pattern, from which at least one has to match.
127
127
128
-
**--match-application-label *selector***
128
+
**--match-application-label *selector***
129
129
130
130
Only process applications that have a valid annotation and match the given
131
-
*label* selector. The *selector* is a string that matches the standard kubernetes label
132
-
[label selector syntax][]. For e.g, `custom.label/name=xyz` would be a valid label
131
+
*label* selector. The *selector* is a string that matches the standard kubernetes
132
+
[label selector syntax][]. For e.g., `custom.label/name=xyz` would be a valid label
133
133
that can be supplied through this parameter. Any applications carrying this
134
134
exact label will be considered as candidates for image updates. This parameter
135
135
currently does not support pattern matching on label values (e.g `customer.label/name=*-staging`).
136
136
You can specify equality, inequality, or set based requirements or a combination.
137
137
For e.g., `app,app!=foo,custom.label/name=xyz,customer in (a,b,c)`
138
138
139
-
**--max-concurrency *number***
139
+
**--max-concurrency *number***
140
140
141
141
Process a maximum of *number* applications concurrently. To disable concurrent
142
142
application processing, specify a number of `1`.
@@ -146,7 +146,7 @@ application processing, specify a number of `1`.
146
146
A shortcut for specifying `--interval 0 --health-port 0`. If given,
147
147
Argo CD Image Updater will exit after the first update cycle.
148
148
149
-
**--registries-conf-path *path***
149
+
**--registries-conf-path *path***
150
150
151
151
Load the registry configuration from file at *path*. Defaults to the path
152
152
`/app/config/registries.conf`. If no configuration should be loaded, and the
0 commit comments