fs.StringVar(&s.ZoneName,"zone-name",s.ZoneName,"Zone name, like example.com.")
fs.StringVar(&s.ServiceDnsSuffix,"service-dns-suffix",s.ServiceDnsSuffix,"DNS Suffix to use when publishing federated service names. Defaults to zone-name")
fs.IntVar(&s.ConcurrentServiceSyncs,"concurrent-service-syncs",s.ConcurrentServiceSyncs,"The number of service syncing operations that will be done concurrently. Larger number = faster endpoint updating, but more CPU (and network) load")
fs.IntVar(&s.ConcurrentReplicaSetSyncs,"concurrent-replicaset-syncs",s.ConcurrentReplicaSetSyncs,"The number of ReplicaSets syncing operations that will be done concurrently. Larger number = faster endpoint updating, but more CPU (and network) load")
fs.DurationVar(&s.ClusterMonitorPeriod.Duration,"cluster-monitor-period",s.ClusterMonitorPeriod.Duration,"The period for syncing ClusterStatus in ClusterController.")
/* ensureDnsRrsets ensures (idempotently, and with minimum mutations) that all of the DNS resource record sets for dnsName are consistent with endpoints.
if endpoints is nil or empty, a CNAME record to uplevelCname is ensured.