Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for successThreshold (0.33 sec)

  1. cluster/addons/dns/coredns/coredns.yaml.base

            livenessProbe:
              httpGet:
                path: /health
                port: 8080
                scheme: HTTP
              initialDelaySeconds: 60
              timeoutSeconds: 5
              successThreshold: 1
              failureThreshold: 5
            readinessProbe:
              httpGet:
                path: /ready
                port: 8181
                scheme: HTTP
            securityContext:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. cluster/addons/dns/coredns/coredns.yaml.in

            livenessProbe:
              httpGet:
                path: /health
                port: 8080
                scheme: HTTP
              initialDelaySeconds: 60
              timeoutSeconds: 5
              successThreshold: 1
              failureThreshold: 5
            readinessProbe:
              httpGet:
                path: /ready
                port: 8181
                scheme: HTTP
            securityContext:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. pkg/kubelet/prober/common_test.go

    	probeSpec.ProbeHandler = v1.ProbeHandler{
    		Exec: &v1.ExecAction{},
    	}
    
    	// Apply test defaults, overwridden for test speed.
    	defaults := map[string]int64{
    		"TimeoutSeconds":   1,
    		"PeriodSeconds":    1,
    		"SuccessThreshold": 1,
    		"FailureThreshold": 1,
    	}
    	for field, value := range defaults {
    		f := reflect.ValueOf(&probeSpec).Elem().FieldByName(field)
    		if f.Int() == 0 {
    			f.SetInt(value)
    		}
    	}
    
    	switch probeType {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:26 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. cluster/addons/dns/coredns/coredns.yaml.sed

            livenessProbe:
              httpGet:
                path: /health
                port: 8080
                scheme: HTTP
              initialDelaySeconds: 60
              timeoutSeconds: 5
              successThreshold: 1
              failureThreshold: 5
            readinessProbe:
              httpGet:
                path: /ready
                port: 8181
                scheme: HTTP
            securityContext:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/flag_output_set_values.golden.yaml

              failureThreshold: 30
              httpGet:
                path: /healthz/ready
                port: 15021
                scheme: HTTP
              initialDelaySeconds: 1
              periodSeconds: 2
              successThreshold: 1
              timeoutSeconds: 1
            resources:
              limits:
                cpu: 2000m
                memory: 1024Mi
              requests:
                cpu: 100m
                memory: 128Mi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/addons/dns/manifests.go

            livenessProbe:
              httpGet:
                path: /health
                port: 8080
                scheme: HTTP
              initialDelaySeconds: 60
              timeoutSeconds: 5
              successThreshold: 1
              failureThreshold: 5
            readinessProbe:
              httpGet:
                path: /ready
                port: 8181
                scheme: HTTP
            securityContext:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 09:59:39 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/helm_values_enablement.golden.yaml

              failureThreshold: 30
              httpGet:
                path: /healthz/ready
                port: 15021
                scheme: HTTP
              initialDelaySeconds: 1
              periodSeconds: 2
              successThreshold: 1
              timeoutSeconds: 1
            resources:
              limits:
                cpu: 2000m
                memory: 1024Mi
              requests:
                cpu: 100m
                memory: 128Mi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/scale_test.go

    			}
    
    		})
    	}
    
    }
    
    func newProbe(handler v1.ProbeHandler) *v1.Probe {
    	return &v1.Probe{
    		ProbeHandler:     handler,
    		TimeoutSeconds:   1,
    		PeriodSeconds:    1,
    		SuccessThreshold: 1,
    		FailureThreshold: 3,
    	}
    }
    
    // newFakePod runs a server (TCP or HTTP) in a random port
    func newFakePod(httpServer bool) (*fakePod, error) {
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top