Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 394 for Healthy (0.15 sec)

  1. pkg/kube/inject/testdata/inject/hello-probes-with-flag-unset-in-annotation.yaml

              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                exec:
                  command:
                    - cat
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 1K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/ready_live.yaml

              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                exec:
                  command:
                    - cat
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 956 bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/https-probes.yaml

              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                exec:
                  command:
                    - cat
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 984 bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/startup_ready_live.yaml

                  port: http
              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                exec:
                  command:
                    - cat
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/hello-probes-noProxyHoldApplication-ProxyConfig.yaml

              containerPort: 90
            livenessProbe:
              httpGet:
                port: http
            readinessProbe:
              exec:
                command:
                - cat
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 13 08:52:02 UTC 2020
    - 996 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    	// we opt for a delay of zero here, because this entrypoint adds generic health checks
    	// and not health checks which are specifically related to kube-apiserver boot-sequences.
    	return s.addHealthChecks(0, checks...)
    }
    
    // AddBootSequenceHealthChecks adds health checks to the old healthz endpoint (for backwards compatibility reasons)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/ServerTruncatesRequestTest.kt

        }
      }
    
      private fun makeSimpleCall() {
        server.enqueue(MockResponse(body = "healthy"))
        val callB = client.newCall(Request(server.url("/")))
        callB.execute().use { response ->
          assertThat(response.body.string()).isEqualTo("healthy")
        }
      }
    
      private fun enableProtocol(protocol: Protocol) {
        enableTls()
        client =
          client.newBuilder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. pkg/kubelet/certificate/transport_test.go

    	}
    }
    
    type fakeManager struct {
    	cert    atomic.Value // Always a *tls.Certificate
    	healthy bool
    }
    
    func (f *fakeManager) SetCertificateSigningRequestClient(certificatesclient.CertificateSigningRequestInterface) error {
    	return nil
    }
    
    func (f *fakeManager) ServerHealthy() bool { return f.healthy }
    
    func (f *fakeManager) Start()                     {}
    func (f *fakeManager) Stop()                      {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 18 08:52:58 UTC 2020
    - 7.8K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/config/types.go

    type NodeLifecycleControllerConfiguration struct {
    	// nodeEvictionRate is the number of nodes per second on which pods are deleted in case of node failure when a zone is healthy
    	NodeEvictionRate float32
    	// secondaryNodeEvictionRate is the number of nodes per second on which pods are deleted in case of node failure when a zone is unhealthy
    	SecondaryNodeEvictionRate float32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 18:14:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/metrics.go

    )
    
    var (
    	zoneHealth = metrics.NewGaugeVec(
    		&metrics.GaugeOpts{
    			Subsystem:      nodeControllerSubsystem,
    			Name:           zoneHealthStatisticKey,
    			Help:           "Gauge measuring percentage of healthy nodes per zone.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"zone"},
    	)
    	zoneSize = metrics.NewGaugeVec(
    		&metrics.GaugeOpts{
    			Subsystem:      nodeControllerSubsystem,
    			Name:           zoneSizeKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 21:55:34 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top