Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for readinessProbe (0.51 sec)

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

                  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. pkg/config/validation/validation_test.go

    			in: &networking.WorkloadGroup{
    				Template: &networking.WorkloadEntry{},
    				Probe:    &networking.ReadinessProbe{},
    			},
    			valid: false,
    		},
    		{
    			name: "probe nil",
    			in: &networking.WorkloadGroup{
    				Template: &networking.WorkloadEntry{},
    				Probe: &networking.ReadinessProbe{
    					HealthCheckMethod: &networking.ReadinessProbe_HttpGet{},
    				},
    			},
    			valid: false,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.LivenessProbe != nil {
    		in, out := &in.LivenessProbe, &out.LivenessProbe
    		*out = new(Probe)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.ReadinessProbe != nil {
    		in, out := &in.ReadinessProbe, &out.ReadinessProbe
    		*out = new(Probe)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.StartupProbe != nil {
    		in, out := &in.StartupProbe, &out.StartupProbe
    		*out = new(Probe)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.LivenessProbe != nil {
    		in, out := &in.LivenessProbe, &out.LivenessProbe
    		*out = new(Probe)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.ReadinessProbe != nil {
    		in, out := &in.ReadinessProbe, &out.ReadinessProbe
    		*out = new(Probe)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.StartupProbe != nil {
    		in, out := &in.StartupProbe, &out.StartupProbe
    		*out = new(Probe)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    .Values.imagePullPolicy }} imagePullPolicy: {{ . }} {{- end }} securityContext: allowPrivilegeEscala: false privileged: false capabilities: drop: - ALL add: - NET_ADMIN readOnlyRootFilesyst: true runAsGroup: 1337 runAsNonRoot: false runAsUser: 0 readinessProbe: httpGet: port: 15021 path: /healthz/ready args: - proxy - ztunnel env: - name: CA_ADDRESS {{- if .Values.caAddress }} value: {{ .Values.caAddress }} {{- else }} value: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

                "protocol"
              ],
              "x-kubernetes-list-type": "map",
              "x-kubernetes-patch-merge-key": "containerPort",
              "x-kubernetes-patch-strategy": "merge"
            },
            "readinessProbe": {
              "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    				return nil, fmt.Errorf("invalid labels: %v", err)
    			}
    		}
    
    		return nil, validateReadinessProbe(wg.Probe)
    	})
    
    func validateReadinessProbe(probe *networking.ReadinessProbe) (errs error) {
    	if probe == nil {
    		return nil
    	}
    	if probe.PeriodSeconds < 0 {
    		errs = appendErrors(errs, fmt.Errorf("periodSeconds must be non-negative"))
    	}
    	if probe.InitialDelaySeconds < 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. samples/addons/grafana.yaml

                failureThreshold: 10
                httpGet:
                  path: /api/health
                  port: 3000
                initialDelaySeconds: 60
                timeoutSeconds: 30
              readinessProbe:
                httpGet:
                  path: /api/health
                  port: 3000
          volumes:
            - name: config
              configMap:
                name: grafana
            - name: dashboards-istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top