Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for successThreshold (0.12 sec)

  1. 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)
  2. 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)
  3. 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