Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    	c.ShutdownDelayDuration = s.ShutdownDelayDuration
    	c.JSONPatchMaxCopyBytes = s.JSONPatchMaxCopyBytes
    	c.MaxRequestBodyBytes = s.MaxRequestBodyBytes
    	c.PublicAddress = s.AdvertiseAddress
    	c.ShutdownSendRetryAfter = s.ShutdownSendRetryAfter
    	c.ShutdownWatchTerminationGracePeriod = s.ShutdownWatchTerminationGracePeriod
    
    	return nil
    }
    
    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. staging/src/k8s.io/apiserver/pkg/server/lifecycle_signals.go

    - HasBeenReady is signaled when the readyz endpoint succeeds for the first time
    
    The following is a sequence of shutdown events that we expect to see with
      'ShutdownSendRetryAfter' = false:
    
    T0: ShutdownInitiated: KILL signal received
    	- /readyz starts returning red
        - run pre shutdown hooks
    
    T0+70s: AfterShutdownDelayDuration: shutdown delay duration has passed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:30 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    // |           |                        |              |                                          |
    // |        [without                 [with             |                                          |
    // | ShutdownSendRetryAfter]  ShutdownSendRetryAfter]  |                                          |
    // |           |                        |              |                                          |
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config.go

    		DiscoveryGroupManager: discovery.NewRootAPIsHandler(c.DiscoveryAddresses, c.Serializer),
    
    		maxRequestBodyBytes: c.MaxRequestBodyBytes,
    
    		lifecycleSignals:       c.lifecycleSignals,
    		ShutdownSendRetryAfter: c.ShutdownSendRetryAfter,
    
    		APIServerID:           c.APIServerID,
    		StorageVersionManager: c.StorageVersionManager,
    
    		Version: c.Version,
    
    		muxAndDiscoveryCompleteSignals: map[string]<-chan struct{}{},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    	tests := []struct {
    		name   string
    		server func() *GenericAPIServer
    	}{
    		{
    			name: "ShutdownSendRetryAfter is disabled",
    			server: func() *GenericAPIServer {
    				return newGenericAPIServer(t, &fakeAudit{}, false)
    			},
    		},
    		{
    			name: "ShutdownSendRetryAfter is enabled",
    			server: func() *GenericAPIServer {
    				return newGenericAPIServer(t, &fakeAudit{}, true)
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
Back to top