Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 125 for healthChecks (0.21 sec)

  1. tests/integration/security/mtls_healthcheck_test.go

    func TestMtlsHealthCheck(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			ns := namespace.NewOrFail(t, t, namespace.Config{Prefix: "healthcheck", Inject: true})
    			for _, testCase := range []struct {
    				name    string
    				rewrite bool
    			}{
    				{name: "rewrite-success", rewrite: true},
    			} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/doc.go

    		 - apiserver-etcd-client.crt
    		 - apiserver-etcd-client.key
    		 - etcd/ca.crt
    		 - etcd/ca.key
    		 - etcd/server.crt
    		 - etcd/server.key
    		 - etcd/peer.crt
    		 - etcd/peer.key
    		 - etcd/healthcheck-client.crt
    		 - etcd/healthcheck-client.key
    		 - sa.pub
    		 - sa.key
    		 - front-proxy-ca.crt
    		 - front-proxy-ca.key
    		 - front-proxy-client.crt
    		 - front-proxy-client.key
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 02 09:38:56 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  3. docs/metrics/healthcheck/README.md

    # MinIO Healthcheck
    
    MinIO server exposes three un-authenticated, healthcheck endpoints liveness probe and a cluster probe at `/minio/health/live` and `/minio/health/cluster` respectively.
    
    ## Liveness probe
    
    This probe always responds with '200 OK'. Only fails if 'etcd' is configured and unreachable. When liveness probe fails, Kubernetes like platforms restart the container.
    
    ```
    livenessProbe:
      httpGet:
        path: /minio/health/live
        port: 9000
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jul 06 16:18:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/controllermanager_test.go

    				t.Errorf("TaintEvictionController init call check failed: expected=%v, got=%v", test.expectInitFuncCall, initFuncCalled)
    			}
    			hasHealthCheck := healthCheck != nil
    			expectHealthCheck := test.expectInitFuncCall
    			if expectHealthCheck != hasHealthCheck {
    				t.Errorf("TaintEvictionController healthCheck check failed: expected=%v, got=%v", expectHealthCheck, hasHealthCheck)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    	}
    	return s.readyzRegistry.addHealthChecks(checks...)
    }
    
    // AddReadyzChecks allows you to add a HealthCheck to readyz.
    func (s *GenericAPIServer) AddReadyzChecks(checks ...healthz.HealthChecker) error {
    	return s.readyzRegistry.addHealthChecks(checks...)
    }
    
    // AddLivezChecks allows you to add a HealthCheck to livez.
    func (s *GenericAPIServer) AddLivezChecks(delay time.Duration, checks ...healthz.HealthChecker) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/metrics.go

    	} else {
    		recordAuthenticationLatency("success", a.jwtIssuerHash, duration)
    	}
    	return response, ok, err
    }
    
    func (a *instrumentedAuthenticator) HealthCheck() error {
    	return a.delegate.HealthCheck()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. pkg/proxy/node.go

    limitations under the License.
    */
    
    package proxy
    
    import (
    	"context"
    	"reflect"
    	"sync"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/proxy/config"
    	"k8s.io/kubernetes/pkg/proxy/healthcheck"
    )
    
    // NodePodCIDRHandler handles the life cycle of kube-proxy based on the node PodCIDR assigned
    // Implements the config.NodeHandler interface
    // https://issues.k8s.io/111321
    type NodePodCIDRHandler struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. cluster/addons/dns/kube-dns/kube-dns.yaml.sed

              limits:
                memory: $DNS_MEMORY_LIMIT
              requests:
                cpu: 100m
                memory: 70Mi
            livenessProbe:
              httpGet:
                path: /healthcheck/kubedns
                port: 10054
                scheme: HTTP
              initialDelaySeconds: 60
              timeoutSeconds: 5
              successThreshold: 1
              failureThreshold: 5
            readinessProbe:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. .github/workflows/mint/minio-erasure.yaml

        - "9000"
        - "9001"
      environment:
        MINIO_CI_CD: "on"
        MINIO_ROOT_USER: "minio"
        MINIO_ROOT_PASSWORD: "minio123"
        MINIO_KMS_SECRET_KEY: "my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw="
      healthcheck:
        test: ["CMD", "mc", "ready", "local"]
        interval: 5s
        timeout: 5s
        retries: 5
    
    # starts 4 docker containers running minio server instances.
    # using nginx reverse proxy, load balancing, you can access
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. cmd/kube-proxy/app/init_windows.go

    	fs.StringVar(&o.config.Winkernel.RootHnsEndpointName, "root-hnsendpoint-name", "cbr0", "The name of the hns endpoint name for root namespace attached to l2bridge")
    	fs.BoolVar(&o.config.Winkernel.ForwardHealthCheckVip, "forward-healthcheck-vip", o.config.Winkernel.ForwardHealthCheckVip, "If true forward service VIP for health check port")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:41:55 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top