in cmd/gke-identity-service-migrator/main.go [86:97]
func (c *FindCRBCommand) SetFlags(f *flag.FlagSet) {
kubeConfigDefault := ""
if home := homedir.HomeDir(); home != "" {
kubeConfigDefault = filepath.Join(home, ".kube", "config")
}
f.StringVar(&c.kubeConfig, "kubeconfig", kubeConfigDefault, "absolute path to the kubeconfig file")
f.StringVar(&c.userIncludePrefix, "user-include-prefix", "", "Prefix for recognizing federated user identities. Will be stripped from the translated user name.")
f.StringVar(&c.userIncludeSuffix, "user-include-suffix", "", "Suffix for recognizing federated user identities. Typically your organization's domain name.")
f.StringVar(&c.groupsIncludePrefix, "groups-include-prefix", "", "Prefix for recognizing federated group names Will be stripped from the translated user name.")
f.StringVar(&c.groupsExcludeSuffix, "groups-exclude-suffix", "", "Suffix for excluding federated group names. Use this to filter out groups introduced by Google Groups for RBAC.")
}