Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 212 for successThreshold (0.2 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.yaml

                  value: valueValue
                path: pathValue
                port: portValue
                scheme: schemeValue
              initialDelaySeconds: 2
              periodSeconds: 4
              successThreshold: 5
              tcpSocket:
                host: hostValue
                port: portValue
              terminationGracePeriodSeconds: 7
              timeoutSeconds: 3
            name: nameValue
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml

                  value: valueValue
                path: pathValue
                port: portValue
                scheme: schemeValue
              initialDelaySeconds: 2
              periodSeconds: 4
              successThreshold: 5
              tcpSocket:
                host: hostValue
                port: portValue
              terminationGracePeriodSeconds: 7
              timeoutSeconds: 3
            name: nameValue
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.yaml

                    path: pathValue
                    port: portValue
                    scheme: schemeValue
                  initialDelaySeconds: 2
                  periodSeconds: 4
                  successThreshold: 5
                  tcpSocket:
                    host: hostValue
                    port: portValue
                  terminationGracePeriodSeconds: 7
                  timeoutSeconds: 3
                name: nameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta1.StatefulSet.yaml

                  value: valueValue
                path: pathValue
                port: portValue
                scheme: schemeValue
              initialDelaySeconds: 2
              periodSeconds: 4
              successThreshold: 5
              tcpSocket:
                host: hostValue
                port: portValue
              terminationGracePeriodSeconds: 7
              timeoutSeconds: 3
            name: nameValue
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.StatefulSet.yaml

                  value: valueValue
                path: pathValue
                port: portValue
                scheme: schemeValue
              initialDelaySeconds: 2
              periodSeconds: 4
              successThreshold: 5
              tcpSocket:
                host: hostValue
                port: portValue
              terminationGracePeriodSeconds: 7
              timeoutSeconds: 3
            name: nameValue
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.json

              "grpc": {
                "port": 1,
                "service": "serviceValue"
              },
              "initialDelaySeconds": 2,
              "timeoutSeconds": 3,
              "periodSeconds": 4,
              "successThreshold": 5,
              "failureThreshold": 6,
              "terminationGracePeriodSeconds": 7
            },
            "readinessProbe": {
              "exec": {
                "command": [
                  "commandValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 52K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.StatefulSet.json

                    "port": 1,
                    "service": "serviceValue"
                  },
                  "initialDelaySeconds": 2,
                  "timeoutSeconds": 3,
                  "periodSeconds": 4,
                  "successThreshold": 5,
                  "failureThreshold": 6,
                  "terminationGracePeriodSeconds": 7
                },
                "readinessProbe": {
                  "exec": {
                    "command": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  9. docs/metrics/healthcheck/README.md

    ```
    livenessProbe:
      httpGet:
        path: /minio/health/live
        port: 9000
        scheme: HTTP
      initialDelaySeconds: 120
      periodSeconds: 30
      timeoutSeconds: 10
      successThreshold: 1
      failureThreshold: 3
    ```
    
    ## Readiness probe
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jul 06 16:18:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/worker_test.go

    		expectResult(t, w, results.Success, "after initial delay")
    	}
    }
    
    func TestFailureThreshold(t *testing.T) {
    	ctx := context.Background()
    	m := newTestManager()
    	w := newTestWorker(m, readiness, v1.Probe{SuccessThreshold: 1, FailureThreshold: 3})
    	m.statusManager.SetPodStatus(w.pod, getTestRunningStatus())
    
    	for i := 0; i < 2; i++ {
    		// First probe should succeed.
    		m.prober.exec = fakeExecProber{probe.Success, nil}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 23:48:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top