Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kube-apiserver: fix missing global flags for --help #70204

Merged

Conversation

imjching
Copy link
Contributor

@imjching imjching commented Oct 24, 2018

What type of PR is this?
/kind bug

What this PR does / why we need it: In #64517, we introduced logical sections for the --help output in the kube-apiserver binary. It seems like it does not consider global flags that were registered through the flag package. This PR fixes that issue. We will output glog related and version flags in the "global" section and everything else in the "generic" section.

Which issue(s) this PR fixes (optional, in fixes #<issue number>(, fixes #<issue_number>, ...) format, will close the issue(s) when PR gets merged):
See #70145.

Special notes for your reviewer: The original PR is in #70164. The plan to is to break it down into individual PRs.

Here's the simplified result of kube-apiserver --help. It now shows the appropriate global flags and generic flags that were missing.

Generic flags:

      --advertise-address ip
                The IP address on which to advertise the apiserver to members of the cluster. This address must be reachable by the rest of the cluster. If blank, the --bind-address will be used. If
                --bind-address is unspecified, the host's default interface will be used.
      --cloud-provider-gce-lb-src-cidrs cidrs
                CIDRs opened in GCE firewall for LB traffic proxy & health checks (default 130.211.0.0/22,209.85.152.0/22,209.85.204.0/22,35.191.0.0/16)
      --cors-allowed-origins strings
                List of allowed origins for CORS, comma separated.  An allowed origin can be a regular expression to support subdomain matching. If this list is empty CORS will not be enabled.
      --default-not-ready-toleration-seconds int
                Indicates the tolerationSeconds of the toleration for notReady:NoExecute that is added by default to every pod that does not already have such a toleration. (default 300)
      --default-unreachable-toleration-seconds int
                Indicates the tolerationSeconds of the toleration for unreachable:NoExecute that is added by default to every pod that does not already have such a toleration. (default 300)
      ...

...

Global flags:

      --alsologtostderr
                log to standard error as well as files
  -h, --help
                help for kube-apiserver
      --log-backtrace-at traceLocation
                when logging hits line file:N, emit a stack trace (default :0)
      --log-dir string
                If non-empty, write log files in this directory
      --log-file string
                If non-empty, use this log file
      --log-flush-frequency duration
                Maximum number of seconds between log flushes (default 5s)
      --logtostderr
                log to standard error instead of files (default true)
      --skip-headers
                If true, avoid header prefixes in the log messages
      --stderrthreshold severity
                logs at or above this threshold go to stderr (default 2)
  -v, --v Level
                log level for V logs
      --version version[=true]
                Print version information and quit
      --vmodule moduleSpec
                comma-separated list of pattern=N settings for file-filtered logging

Does this PR introduce a user-facing change?:

Fix missing flags in kube-apiserver --help.

/sig cli
/cc @stewart-yu

@k8s-ci-robot k8s-ci-robot added the release-note Denotes a PR that will be considered when it comes time to generate release notes. label Oct 24, 2018
@k8s-ci-robot k8s-ci-robot added size/L Denotes a PR that changes 100-499 lines, ignoring generated files. kind/bug Categorizes issue or PR as related to a bug. sig/cli Categorizes an issue or PR as relevant to SIG CLI. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. area/apiserver sig/api-machinery Categorizes an issue or PR as relevant to SIG API Machinery. labels Oct 24, 2018
@imjching
Copy link
Contributor Author

/assign @nikhiljindal
/cc @dims @sttts

@dims
Copy link
Member

dims commented Oct 24, 2018

/ok-to-test

@k8s-ci-robot k8s-ci-robot removed the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label Oct 24, 2018
@imjching
Copy link
Contributor Author

Thank you! Hmm, looks like there are some dependency issues. Will look into them.

@imjching imjching force-pushed the 70145-fix-glog-flags-apiserver branch 3 times, most recently from d6e087d to 83c25d9 Compare October 24, 2018 21:48
@imjching
Copy link
Contributor Author

/retest. This should work now.


// normalize replaces underscores with hyphens. We should always use hyphens
// instead of underscores when registering kube-apiserver flags.
func normalize(s string) string {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it should belong to another pull i suppose

register(global, local, "stderrthreshold")
register(global, local, "vmodule")
register(global, local, "log_backtrace_at")
register(global, local, "log_dir")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we have to register these by hardcoding their name here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I couldn't think of a better way since the flags are initialized the moment the glog package is used:

flag.BoolVar(&logging.toStderr, "logtostderr", false, "log to standard error instead of files")
flag.BoolVar(&logging.alsoToStderr, "alsologtostderr", false, "log to standard error as well as files")
flag.Var(&logging.verbosity, "v", "log level for V logs")
flag.Var(&logging.stderrThreshold, "stderrthreshold", "logs at or above this threshold go to stderr")
flag.Var(&logging.vmodule, "vmodule", "comma-separated list of pattern=N settings for file-filtered logging")
flag.Var(&logging.traceLocation, "log_backtrace_at", "when logging hits line file:N, emit a stack trace")

We're doing the same thing in #68054 too. Previously without the named sections, we added everything from the global flag set:

pflag.CommandLine.AddGoFlagSet(goflag.CommandLine)

With the named logical sections, we will need to extract out relevant flags so that we could group them.

pflagFlag.Name = normalize(pflagFlag.Name)
local.AddFlag(pflagFlag)
} else {
panic(fmt.Sprintf("failed to find flag in global flagset (flag): %s", globalName))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dont panic, return an error instead

Copy link
Member

@yue9944882 yue9944882 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

scattering multiple local functions makes it hard to read. lumping them into one is fine. also, plz keep a minimal change and put unrelated changes into another pull if u want.

@jennybuckley
Copy link

cc @logicalhan

@imjching
Copy link
Contributor Author

/hold

#68054 is trying to add in globalflags.go into apiserver/pkg/util/flag/. Will wait until that is merged in so that we could rebase and use methods from there.

@k8s-ci-robot k8s-ci-robot added the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Oct 26, 2018
@dims
Copy link
Member

dims commented Nov 11, 2018

/milestone v1.13

@k8s-ci-robot k8s-ci-robot added this to the v1.13 milestone Nov 11, 2018
@k8s-ci-robot k8s-ci-robot added the priority/critical-urgent Highest priority. Must be actively worked on as someone's top priority right now. label Nov 19, 2018
@AishSundar
Copy link
Contributor

@dims can you (or add anyone else who can) please add the approval label for this, #70205 and #70216

// register adds a flag to local that targets the Value associated with the Flag named globalName in global
func register(global *flag.FlagSet, local *pflag.FlagSet, globalName string) {
if f := global.Lookup(globalName); f != nil {
local.AddGoFlag(f)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why is the logic different from a77652e#diff-2fd8f885c4e1d904b7d678e5991aade4R68 ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sttts @imjching @stewart-yu we need both to match.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sttts @dims Originally I removed the normalize part because we don't need it. It was there to ensure that all globally registered flags that use underscores will be normalized to use hyphens instead.

klog registers flags using underscores:
https://github.com/dims/klog/blob/master/klog.go#L411-L419

Those cloud provider and admission packages register flags using hyphens instead. I have updated the code and added the normalize part back. Do we actually need both files to match? The commit that was provided above was for klog flags and therefore we need to normalize those flags.

Also, from documentation, the two snippets of code below are equivalent:

pflagFlag := pflag.PFlagFromGoFlag(f)
local.AddFlag(pflagFlag)
local.AddGoFlag(f)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@imjching thanks!
@sttts your call :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

seems below enough in here @dims

f.Name = normalize(f.Name)
local.AddFlag(f)

but add

pflagFlag := pflag.PFlagFromGoFlag(f)

i'm not obey also, but seems no need for component flag now, may be need for future

global := flag.CommandLine
local := pflag.NewFlagSet(os.Args[0], pflag.ExitOnError)

register(global, local, "default-not-ready-toleration-seconds")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how do we know we did not forget flags? We need a test for that, or if that is tricky due to globals in tests, we should at least have a check with a glog.Error here.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I feel that doing a panic here rather than returning an error would be better since it would alert us that we failed to allow libraries to globally register their flags. What do you think? @yue9944882

@imjching iiuc, assuming any flag required by register here got deprecated in the vendored dependency, then we would be surprised w/ a panic, amiright? if u notice, we seldom do panic thru the codebase, which imho is neither user-friendly nor developer-friendly.

while i see we've been already doing that in controller, so...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sttts @yue9944882 Updated the patch by adding in tests. (It's similar to the other one that was merged earlier.) Are those sufficient?

@imjching imjching force-pushed the 70145-fix-glog-flags-apiserver branch from 1d7d26e to 85b794e Compare November 20, 2018 02:04
@k8s-ci-robot k8s-ci-robot added size/L Denotes a PR that changes 100-499 lines, ignoring generated files. and removed lgtm "Looks good to me", indicates that a PR is ready to be merged. size/M Denotes a PR that changes 30-99 lines, ignoring generated files. labels Nov 20, 2018
func register(global *flag.FlagSet, local *pflag.FlagSet, globalName string) {
if f := global.Lookup(globalName); f != nil {
pflagFlag := pflag.PFlagFromGoFlag(f)
pflagFlag.Name = normalize(pflagFlag.Name)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why add Line72? no need

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do refer to the discussion above with @sttts and @dims. I have provided my reasoning to remove it, but it seems like we need both files to match in terms of their logic, so I'm not too sure what are their thoughts.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@imjching i am ok with "remove it" with a tracking issue (or PR) for the other piece of code for 1.14

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dims Sorry, I'm not quite sure if I understand you. If we were to remove Line 72 temporarily, i.e. pflagFlag := pflag.PFlagFromGoFlag(f), what should the issue track and what does the "other piece of code" refer to?

@stewart-yu
Copy link
Contributor

stewart-yu commented Nov 20, 2018

add test look much better now
Just as summary:

  1. if we no need Line72 logic, copy pflagRegister() in cmd/kubelet to
    staging/src/k8s.io/apiserver/pkg/util/globalflag/globalflags.go ; if need, make register in 'staging/src/k8s.io/apiserver/pkg/util/globalflag/globalflags.go' public, so we can reuse it in KCM, CCM and kube-apiserver

2、combine addCloudProviderFlags() and addCloudProviderFlags into AddGenericFlags(), like that:

func AddGenericFlags(fs *pflag.FlagSet) {
	// lookup flags in global flag set and re-register the values with our flagset
	global := flag.CommandLine
	local := pflag.NewFlagSet(os.Args[0], pflag.ExitOnError)
       
       //adds flags from k8s.io/kubernetes/pkg/cloudprovider/providers.
 	globalflag.FlagRegister(global, local, "cloud-provider-gce-lb-src-cidrs")

       //adds flags from k8s.io/apiserver/pkg/admission.
        globalflag.FlagRegister(global, local, "default-not-ready-toleration-seconds")
	globalflag.FlagRegister(global, local, "default-unreachable-toleration-seconds")

 	fs.AddFlagSet(local)
}

WDYT? @imjching

@imjching
Copy link
Contributor Author

Thank you for your prompt review, @stewart-yu! Here are my thoughts for your summary:

  1. Unfortunately, I don't think pflagRegister in cmd/kubelet/app/options/globalflags.go will work. In that function, global has type *pflag.FlagSet, but the global that we have (i.e. flag.CommandLine) has type *flag.FlagSet. We need to grab our global from flag.CommandLine and not pflag.CommandLine because we registered our flags under flag, i.e.

    defaultNotReadyTolerationSeconds = flag.Int64("default-not-ready-toleration-seconds", 300,
    "Indicates the tolerationSeconds of the toleration for notReady:NoExecute"+
    " that is added by default to every pod that does not already have such a toleration.")
    defaultUnreachableTolerationSeconds = flag.Int64("default-unreachable-toleration-seconds", 300,
    "Indicates the tolerationSeconds of the toleration for unreachable:NoExecute"+
    " that is added by default to every pod that does not already have such a toleration.")

    which is very different from
    var flagConfigFile = pflag.String("azure-container-registry-config", "",
    "Path to the file containing Azure container registry configuration information.")

    Also, regarding the changes to make register public, I made that function public back then in one of the 3 patches that I have, but I was told that it's easier to just copy the function into customflags.go.

  2. Merging addCloudProviderFlags and addAdmissionFlags into AddGenericFlags sounds good to me.

Would like to hear thoughts from everyone else as well 😄

Signed-off-by: Jay Lim <jay@imjching.com>
@imjching imjching force-pushed the 70145-fix-glog-flags-apiserver branch from 103066c to 7fbdcf8 Compare November 21, 2018 17:30
@nikopen
Copy link
Contributor

nikopen commented Nov 21, 2018

@imjching I see the other two related PRs got closed but this is still going in, are the other two dropped for a later time (1.14) ?

@imjching
Copy link
Contributor Author

/test pull-kubernetes-integration

@nikopen The other two got combined in #71298 and was already merged. This should still go in.

@imjching
Copy link
Contributor Author

/assign @sttts
Can you take a look at it again? It should be good now.

@stewart-yu
Copy link
Contributor

/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Nov 22, 2018
@sttts
Copy link
Contributor

sttts commented Nov 22, 2018

/approve

@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: imjching, sttts

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Nov 22, 2018
@imjching
Copy link
Contributor Author

/test pull-kubernetes-verify

@imjching
Copy link
Contributor Author

/test pull-kubernetes-integration

@k8s-ci-robot k8s-ci-robot merged commit 69f100e into kubernetes:master Nov 22, 2018
@imjching imjching deleted the 70145-fix-glog-flags-apiserver branch November 22, 2018 16:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. area/apiserver cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. kind/bug Categorizes issue or PR as related to a bug. lgtm "Looks good to me", indicates that a PR is ready to be merged. priority/critical-urgent Highest priority. Must be actively worked on as someone's top priority right now. release-note Denotes a PR that will be considered when it comes time to generate release notes. sig/api-machinery Categorizes an issue or PR as relevant to SIG API Machinery. sig/cli Categorizes an issue or PR as relevant to SIG CLI. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet