Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for failureThreshold (0.33 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                    path: /healthz/ready
                    port: 15021
                  initialDelaySeconds: 0
                  periodSeconds: 1
                  timeoutSeconds: 3
                  failureThreshold: {{ .Values.global.proxy.startupProbe.failureThreshold }}
              {{ end }}
                readinessProbe:
                  httpGet:
                    path: /healthz/ready
                    port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    be tied to the readiness probe values. # # If the probe is enabled, it is recommended to have delay=0s,period=15s,failureThreshold=4. # This ensures the pod is marked ready immediately after the startup probe passes (which has a 1s poll interval), # and doesn't spam the readiness endpoint too much # # If the probe is disabled, it is recommended to have delay=1s,period=2s,failureThreshold=30. # This ensures the startup is reasonable fast (polling every 2s). 1s delay is used since the startup is not...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    	}
    	if probe.SuccessThreshold < 0 {
    		errs = appendErrors(errs, fmt.Errorf("successThreshold must be non-negative"))
    	}
    	if probe.FailureThreshold < 0 {
    		errs = appendErrors(errs, fmt.Errorf("failureThreshold must be non-negative"))
    	}
    	switch m := probe.HealthCheckMethod.(type) {
    	case *networking.ReadinessProbe_HttpGet:
    		h := m.HttpGet
    		if h == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. samples/addons/grafana.yaml

                - name: "GF_SECURITY_ADMIN_PASSWORD"
                  value: "admin"
                - name: "GF_SECURITY_ADMIN_USER"
                  value: "admin"
              livenessProbe:
                failureThreshold: 10
                httpGet:
                  path: /api/health
                  port: 3000
                initialDelaySeconds: 60
                timeoutSeconds: 30
              readinessProbe:
                httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction",
              "description": "One and only one of the following should be specified. Exec specifies the action to take."
            },
            "failureThreshold": {
              "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
              "format": "int32",
              "type": "integer"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top