Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ExternalHost (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    		"List of directives for HSTS, comma separated. If this list is empty, then HSTS directives will not "+
    		"be added. Example: 'max-age=31536000,includeSubDomains,preload'")
    
    	fs.StringVar(&s.ExternalHost, "external-hostname", s.ExternalHost,
    		"The hostname to use when generating externalized URLs for this master (e.g. Swagger API Docs or OpenID Discovery).")
    
    	fs.IntVar(&s.MaxRequestsInFlight, "max-requests-inflight", s.MaxRequestsInFlight, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/options.go

    		return CompletedOptions{}, fmt.Errorf("error creating self-signed certificates: %v", err)
    	}
    
    	if len(completed.GenericServerRunOptions.ExternalHost) == 0 {
    		if len(completed.GenericServerRunOptions.AdvertiseAddress) > 0 {
    			completed.GenericServerRunOptions.ExternalHost = completed.GenericServerRunOptions.AdvertiseAddress.String()
    		} else {
    			hostname, err := os.Hostname()
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/authentication.go

    			allErrors = append(allErrors, errors.New("service-account-key-file is a required flag"))
    		}
    
    		// Validate the JWKS URI when it is explicitly set.
    		// When unset, it is later derived from ExternalHost.
    		if o.ServiceAccounts.JWKSURI != "" {
    			if u, err := url.Parse(o.ServiceAccounts.JWKSURI); err != nil {
    				allErrors = append(allErrors, fmt.Errorf("service-account-jwks-uri must be a valid URL: %v", err))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.3.md

    ## Changes since v1.3.0-alpha.5
    
    ### Action Required
    
    * Fixing logic to generate ExternalHost in genericapiserver ([#26796](https://github.com/kubernetes/kubernetes/pull/26796), [@nikhiljindal](https://github.com/nikhiljindal))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

    * specify custom ca file to verify the keystone server ([#35488](https://github.com/kubernetes/kubernetes/pull/35488), [@dixudx](https://github.com/dixudx))
    * AWS: Support default value for ExternalHost ([#33568](https://github.com/kubernetes/kubernetes/pull/33568), [@justinsb](https://github.com/justinsb))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top