Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for readinessProbe (0.2 sec)

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