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
"Path to installed Ansible Collections. If set, collections should be located in {{value}}/ansible_collections/. If unset, collections are assumed to be in ~/.ansible/collections or /usr/share/ansible/collections.",
85
+
"Path to installed Ansible Collections. If set, collections should be located in {{value}}/ansible_collections/. "+
86
+
"If unset, collections are assumed to be in ~/.ansible/collections or /usr/share/ansible/collections.",
87
+
)
88
+
flagSet.StringVar(&f.AnsibleArgs,
89
+
"ansible-args",
90
+
"",
91
+
"Ansible args. Allows user to specify arbitrary arguments for ansible-based operators.",
92
+
)
93
+
94
+
// Controller flags.
95
+
flagSet.DurationVar(&f.ReconcilePeriod,
96
+
"reconcile-period",
97
+
time.Minute,
98
+
"Default reconcile period for controllers",
99
+
)
100
+
flagSet.IntVar(&f.MaxConcurrentReconciles,
101
+
"max-concurrent-reconciles",
102
+
runtime.NumCPU(),
103
+
"Maximum number of concurrent reconciles for controllers. Overridden by environment variable.",
104
+
)
105
+
106
+
// Controller manager flags.
107
+
flagSet.StringVar(&f.ManagerConfigPath,
108
+
"config",
109
+
"",
110
+
"The controller will load its initial configuration from this file. "+
111
+
"Omit this flag to use the default configuration values. "+
112
+
"Command-line flags override configuration from this file.",
0 commit comments