Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for HealthChecks (0.2 sec)

  1. pkg/kubelet/runtime.go

    type healthCheck struct {
    	name string
    	fn   healthCheckFnType
    }
    
    func (s *runtimeState) addHealthCheck(name string, f healthCheckFnType) {
    	s.Lock()
    	defer s.Unlock()
    	s.healthChecks = append(s.healthChecks, &healthCheck{name: name, fn: f})
    }
    
    func (s *runtimeState) setRuntimeSync(t time.Time) {
    	s.Lock()
    	defer s.Unlock()
    	s.lastBaseRuntimeSync = t
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller_test.go

    			},
    			mockLoadEncryptionConfig: func(ctx context.Context, filepath string, reload bool, apiServerID string) (*encryptionconfig.EncryptionConfiguration, error) {
    				return &encryptionconfig.EncryptionConfiguration{
    					HealthChecks: []healthz.HealthChecker{
    						&mockHealthChecker{
    							pluginName: "valid-plugin",
    							err:        nil,
    						},
    					},
    					EncryptionFileContentHash: "some new config hash",
    				}, nil
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. cluster/gce/manifests/glbc.manifest

        - --gce-ratelimit=beta.Operations.Get,qps,10,100
        - --gce-ratelimit=ga.BackendServices.Get,qps,1.8,1
        - --gce-ratelimit=beta.BackendServices.Get,qps,1.8,1
        - --gce-ratelimit=ga.HealthChecks.Get,qps,1.8,1
        - --gce-ratelimit=alpha.HealthChecks.Get,qps,1.8,1
        - --gce-ratelimit=beta.NetworkEndpointGroups.Get,qps,1.8,1
        - --gce-ratelimit=beta.NetworkEndpointGroups.AttachNetworkEndpoints,qps,1.8,1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 10:40:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. cluster/addons/calico-policy-controller/kubecontrollersconfigurations-crd.yaml

                    description: 'EtcdV3CompactionPeriod is the period between etcdv3
                      compaction requests. Set to 0 to disable. [Default: 10m]'
                    type: string
                  healthChecks:
                    description: 'HealthChecks enables or disables support for health
                      checks [Default: Enabled]'
                    type: string
                  logSeverityScreen:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 11K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    	if !configChanged {
    		return
    	}
    
    	if len(encryptionConfiguration.HealthChecks) != 1 {
    		err = fmt.Errorf("unexpected number of healthz checks: %d. Should have only one", len(encryptionConfiguration.HealthChecks))
    		return
    	}
    	// get healthz checks for all new KMS plugins.
    	if err = d.validateNewTransformersHealth(ctx, encryptionConfiguration.HealthChecks[0], encryptionConfiguration.KMSCloseGracePeriod); err != nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. pkg/proxy/healthcheck/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package healthcheck provides tools for serving kube-proxy healthchecks.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 21:22:56 UTC 2017
    - 718 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    		if !s.SkipHealthEndpoints {
    			addHealthChecksWithoutLivez(c, encryptionConfiguration.HealthChecks...)
    		}
    	}
    
    	return nil
    }
    
    func addHealthChecksWithoutLivez(c *server.Config, healthChecks ...healthz.HealthChecker) {
    	c.HealthzChecks = append(c.HealthzChecks, healthChecks...)
    	c.ReadyzChecks = append(c.ReadyzChecks, healthChecks...)
    }
    
    func (s *EtcdOptions) addEtcdHealthEndpoint(c *server.Config) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. pkg/kubeapiserver/authenticator/config.go

    			SupportedSigningAlgs: oidcSigningAlgs,
    			DisallowedIssuers:    disallowedIssuers,
    		})
    		if err != nil {
    			return nil, err
    		}
    		jwtAuthenticators = append(jwtAuthenticators, oidcAuth)
    		healthChecks = append(healthChecks, oidcAuth.HealthCheck)
    	}
    	return &jwtAuthenticatorWithCancel{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/health.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/images"
    	"k8s.io/kubernetes/cmd/kubeadm/app/preflight"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/output"
    )
    
    // healthCheck is a helper struct for easily performing healthchecks against the cluster and printing the output
    type healthCheck struct {
    	name   string
    	client clientset.Interface
    	cfg    *kubeadmapi.ClusterConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. cni/pkg/iptables/iptables.go

    	// This is effectively an analog for Istio's old-style podSpec-based health check rewrites.
    	// Before Istio would update the pod manifest to rewrite healthchecks to go to sidecar Envoy port 15021,
    	// so that it could distinguish things that can be unauthenticated (healthchecks) from other kinds of node traffic
    	// (e.g. LoadBalanced Service packets, etc) that need to be authenticated/captured/proxied.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top