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: main.go
+18
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,24 @@ func main() {
48
48
app.Flag("operator-namespace", "Namespace in which the ArgoCD operator will be running").Default("syn-argocd-operator").StringVar(&agent.OperatorNamespace)
49
49
app.Flag("argo-image", "Image to be used for the Argo CD deployments").Default(images.DefaultArgoCDImage).StringVar(&agent.ArgoCDImage)
50
50
app.Flag("redis-image", "Image to be used for the Argo CD Redis deployment").Default(images.DefaultRedisImage).StringVar(&agent.RedisImage)
51
+
app.
52
+
Flag(
53
+
"additional-facts-config-map",
54
+
"Additional facts added to the dynamic facts in the cluster object. Keys in the configmap's data field can't override existing keys.").
ns:=flag.String("namespace", "syn", "namespace in which steward is running")
17
+
additionalFactsConfigMap:=flag.String("additional-facts-config-map", "additional-facts", "configmap containing additional facts to be added to the dynamic facts")
18
+
ocpOAuthRouteNamespace:=flag.String("ocp-oauth-route-namespace", "openshift-authentication", "Namespace for the OpenShift OAuth route")
19
+
ocpOAuthRouteName:=flag.String("ocp-oauth-route-name", "oauth-openshift", "Name of the OpenShift OAuth route")
0 commit comments