Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for failureThreshold (0.59 sec)

  1. samples/addons/prometheus.yaml

                timeoutSeconds: 4
                failureThreshold: 3
                successThreshold: 1
              livenessProbe:
                httpGet:
                  path: /-/healthy
                  port: 9090
                  scheme: HTTP
                initialDelaySeconds: 30
                periodSeconds: 15
                timeoutSeconds: 10
                failureThreshold: 3
                successThreshold: 1
              volumeMounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. 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)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                            items:
                              type: string
                            type: array
                        type: object
                      failureThreshold:
                        description: Minimum consecutive failures for the probe to be
                          considered failed after having succeeded.
                        format: int32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.yaml

                            items:
                              type: string
                            type: array
                        type: object
                      failureThreshold:
                        description: Minimum consecutive failures for the probe to be
                          considered failed after having succeeded.
                        format: int32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. 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)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                    "$ref": "#/components/schemas/io.k8s.api.core.v1.ExecAction"
                  }
                ],
                "description": "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: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"failureThreshold": {
    						SchemaProps: spec.SchemaProps{
    							Description: "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

          "properties": {
            "exec": {
              "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction",
              "description": "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: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top