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
| image.tag | The image release tag to use |`v0.1.0`|
28
-
| namespace | Namespace that this Helm chart is installed on |`fleet-system`|
29
-
| serviceAccount.create | Whether to create service account |`true`|
30
-
| serviceAccount.name | Service account name |`hub-agent-sa`|
31
-
| resources | The resource request/limits for the container image | limits: 500m CPU, 1Gi, requests: 100m CPU, 128Mi |
32
-
| affinity | The node affinity to use for hubagent pod |`{}`|
33
-
| tolerations | The tolerations to use for hubagent pod |`[]`|
34
-
| logVerbosity | Log level. Uses V logs (klog) |`5`|
35
-
| enableV1Alpha1APIs | If set, the agents will watch for the v1alpha1 APIs. |`false`|
36
-
| enableV1Beta1APIs | If set, the agents will watch for the v1beta1 APIs. |`true`|
37
-
| hubAPIQPS | QPS to use while talking with fleet-apiserver. Doesn't cover events and node heartbeat apis which rate limiting is controlled by a different set of flags. |`250`|
38
-
| hubAPIBurst | Burst to use while talking with fleet-apiserver. Doesn't cover events and node heartbeat apis which rate limiting is controlled by a different set of flags. |`1000`|
39
-
| MaxConcurrentClusterPlacement | The max number of clusterResourcePlacement to run concurrently this fleet supports. |`100`|
40
-
| ConcurrentResourceChangeSyncs | The number of resourceChange reconcilers that are allowed to run concurrently. |`20`|
41
-
| logFileMaxSize | Max size of log file before rotation |`1000000`|
42
-
| MaxFleetSizeSupported | The max number of member clusters this fleet supports. |`100`|
| image.tag | The image release tag to use |`v0.1.0`|
28
+
| namespace | Namespace that this Helm chart is installed on |`fleet-system`|
29
+
| serviceAccount.create | Whether to create service account |`true`|
30
+
| serviceAccount.name | Service account name |`hub-agent-sa`|
31
+
| resources | The resource request/limits for the container image | limits: 500m CPU, 1Gi, requests: 100m CPU, 128Mi |
32
+
| affinity | The node affinity to use for hubagent pod |`{}`|
33
+
| tolerations | The tolerations to use for hubagent pod |`[]`|
34
+
| logVerbosity | Log level. Uses V logs (klog) |`5`|
35
+
| enableV1Alpha1APIs | If set, the agents will watch for the v1alpha1 APIs. |`false`|
36
+
| enableV1Beta1APIs | If set, the agents will watch for the v1beta1 APIs. |`true`|
37
+
| hubAPIQPS | QPS to use while talking with fleet-apiserver. Doesn't cover events and node heartbeat apis which rate limiting is controlled by a different set of flags. |`250`|
38
+
| hubAPIBurst | Burst to use while talking with fleet-apiserver. Doesn't cover events and node heartbeat apis which rate limiting is controlled by a different set of flags. |`1000`|
39
+
| MaxConcurrentClusterPlacement | The max number of clusterResourcePlacement to run concurrently this fleet supports. |`100`|
40
+
| ConcurrentResourceChangeSyncs | The number of resourceChange reconcilers that are allowed to run concurrently. |`20`|
41
+
| logFileMaxSize | Max size of log file before rotation |`1000000`|
42
+
| MaxFleetSizeSupported | The max number of member clusters this fleet supports. |`100`|
43
+
| resourceSnapshotCreationInterval | The interval at which resource snapshots are created. |`1m`|
@@ -169,6 +172,7 @@ func (o *Options) AddFlags(flags *flag.FlagSet) {
169
172
flags.BoolVar(&o.EnablePprof, "enable-pprof", false, "If set, the pprof profiling is enabled.")
170
173
flags.IntVar(&o.PprofPort, "pprof-port", 6065, "The port for pprof profiling.")
171
174
flags.BoolVar(&o.DenyModifyMemberClusterLabels, "deny-modify-member-cluster-labels", false, "If set, users not in the system:masters cannot modify member cluster labels.")
175
+
flags.DurationVar(&o.ResourceSnapshotCreationInterval, "resource-snapshot-creation-interval", 1*time.Minute, "The interval at which resource snapshots are created.")
0 commit comments