Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for successThreshold (0.22 sec)

  1. samples/grpc-echo/grpc-echo.yaml

                  port: 8080
                  scheme: HTTP
                initialDelaySeconds: 1
                periodSeconds: 2
                successThreshold: 1
                timeoutSeconds: 1
              startupProbe:
                failureThreshold: 10
                periodSeconds: 10
                successThreshold: 1
                tcpSocket:
                  port: tcp-health-port
                timeoutSeconds: 1
    ---
    apiVersion: apps/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go

    }
    
    // WithSuccessThreshold sets the SuccessThreshold field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the SuccessThreshold field is set to the value of the last call.
    func (b *ProbeApplyConfiguration) WithSuccessThreshold(value int32) *ProbeApplyConfiguration {
    	b.SuccessThreshold = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  3. cluster/addons/metadata-agent/stackdriver/metadata-agent.yaml

              httpGet:
                path: /healthz
                port: 8000
              initialDelaySeconds: 30
              periodSeconds: 60
              timeoutSeconds: 5
              failureThreshold: 1
              successThreshold: 1
            args:
            - -o KubernetesUseWatch=true
            - -o KubernetesClusterLevelMetadata=false
            - -o MetadataReporterPurgeDeleted=true
            ports:
            - containerPort: 8000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 07:45:36 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  4. pkg/controller/deployment/util/hash_test.go

                            "scheme": "HTTP"
                        },
                        "initialDelaySeconds": 30,
                        "timeoutSeconds": 1,
                        "periodSeconds": 10,
                        "successThreshold": 1,
                        "failureThreshold": 3
                    },
                    "readinessProbe": {
                        "httpGet": {
                            "path": "/private/status",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 28 19:00:40 UTC 2019
    - 4K bytes
    - Viewed (0)
  5. 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)
  6. cluster/addons/dns/kube-dns/kube-dns.yaml.base

            livenessProbe:
              httpGet:
                path: /healthcheck/kubedns
                port: 10054
                scheme: HTTP
              initialDelaySeconds: 60
              timeoutSeconds: 5
              successThreshold: 1
              failureThreshold: 5
            readinessProbe:
              httpGet:
                path: /readiness
                port: 8081
                scheme: HTTP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. pkg/istio-agent/health/health_check.go

    	cfg = cfg.DeepCopy()
    	// Thresholds have a minimum of 1
    	cfg.FailureThreshold = orDefault(cfg.FailureThreshold, 1)
    	cfg.SuccessThreshold = orDefault(cfg.SuccessThreshold, 1)
    
    	// InitialDelaySeconds allows zero, no default needed
    	cfg.TimeoutSeconds = orDefault(cfg.TimeoutSeconds, 1)
    	cfg.PeriodSeconds = orDefault(cfg.PeriodSeconds, 10)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:44 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  8. cluster/addons/dns/kube-dns/kube-dns.yaml.in

            livenessProbe:
              httpGet:
                path: /healthcheck/kubedns
                port: 10054
                scheme: HTTP
              initialDelaySeconds: 60
              timeoutSeconds: 5
              successThreshold: 1
              failureThreshold: 5
            readinessProbe:
              httpGet:
                path: /readiness
                port: 8081
                scheme: HTTP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. cluster/addons/dns/kube-dns/kube-dns.yaml.sed

            livenessProbe:
              httpGet:
                path: /healthcheck/kubedns
                port: 10054
                scheme: HTTP
              initialDelaySeconds: 60
              timeoutSeconds: 5
              successThreshold: 1
              failureThreshold: 5
            readinessProbe:
              httpGet:
                path: /readiness
                port: 8081
                scheme: HTTP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/deployment/manual-ip.yaml

              failureThreshold: 4
              httpGet:
                path: /healthz/ready
                port: 15021
                scheme: HTTP
              initialDelaySeconds: 0
              periodSeconds: 15
              successThreshold: 1
              timeoutSeconds: 1
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              privileged: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top