Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for httpGet (0.15 sec)

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

                startupProbe:
                  httpGet:
                    path: /healthz/ready
                    port: 15021
                  initialDelaySeconds: 0
                  periodSeconds: 1
                  timeoutSeconds: 3
                  failureThreshold: {{ .Values.global.proxy.startupProbe.failureThreshold }}
              {{ end }}
                readinessProbe:
                  httpGet:
                    path: /healthz/ready
    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. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    additionalProperties: type: string type: object type: object probe: description: '`ReadinessProbe` describes the configuration the user must provide for healthchecking on their workload.' oneOf: - not: anyOf: - required: - httpGet - required: - tcpSocket - required: - exec - required: - httpGet - required: - tcpSocket - required: - exec properties: exec: description: Health is determined by how the command that is executed exited. properties: command: description: Command to run. items: type: string type:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    	*out = *in
    	if in.Exec != nil {
    		in, out := &in.Exec, &out.Exec
    		*out = new(ExecAction)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.HTTPGet != nil {
    		in, out := &in.HTTPGet, &out.HTTPGet
    		*out = new(HTTPGetAction)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.TCPSocket != nil {
    		in, out := &in.TCPSocket, &out.TCPSocket
    		*out = new(TCPSocketAction)
    		**out = **in
    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

    	*out = *in
    	if in.Exec != nil {
    		in, out := &in.Exec, &out.Exec
    		*out = new(ExecAction)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.HTTPGet != nil {
    		in, out := &in.HTTPGet, &out.HTTPGet
    		*out = new(HTTPGetAction)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.TCPSocket != nil {
    		in, out := &in.TCPSocket, &out.TCPSocket
    		*out = new(TCPSocketAction)
    		**out = **in
    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. pkg/config/validation/validation.go

    	case *networking.ReadinessProbe_HttpGet:
    		h := m.HttpGet
    		if h == nil {
    			errs = appendErrors(errs, fmt.Errorf("httpGet may not be nil"))
    			break
    		}
    		errs = appendErrors(errs, agent.ValidatePort(int(h.Port)))
    		if h.Scheme != "" && h.Scheme != string(apimirror.URISchemeHTTPS) && h.Scheme != string(apimirror.URISchemeHTTP) {
    			errs = appendErrors(errs, fmt.Errorf(`httpGet.scheme must be one of "http", "https"`))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "One and only one of the following should be specified. Exec specifies the action to take."
            },
            "httpGet": {
              "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction",
              "description": "HTTPGet specifies the http request to perform."
            },
            "tcpSocket": {
              "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction",
    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_test.go

    						HttpGet: &networking.HTTPHealthCheckConfig{},
    					},
    				},
    			},
    			valid: false,
    		},
    		{
    			name: "probe http valid",
    			in: &networking.WorkloadGroup{
    				Template: &networking.WorkloadEntry{},
    				Probe: &networking.ReadinessProbe{
    					HealthCheckMethod: &networking.ReadinessProbe_HttpGet{
    						HttpGet: &networking.HTTPHealthCheckConfig{
    							Port: 5,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. pkg/api/pod/util_test.go

    		return &api.LifecycleHandler{
    			Exec: &api.ExecAction{Command: []string{"foo"}},
    		}
    	}
    
    	makeHTTPGetHandler := func() *api.LifecycleHandler {
    		return &api.LifecycleHandler{
    			HTTPGet: &api.HTTPGetAction{Host: "foo"},
    		}
    	}
    
    	makeContainer := func(preStop, postStart *api.LifecycleHandler) api.Container {
    		container := api.Container{Name: "foo"}
    		if preStop != nil || postStart != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  9. samples/addons/grafana.yaml

                  value: "admin"
              livenessProbe:
                failureThreshold: 10
                httpGet:
                  path: /api/health
                  port: 3000
                initialDelaySeconds: 60
                timeoutSeconds: 30
              readinessProbe:
                httpGet:
                  path: /api/health
                  port: 3000
          volumes:
            - name: config
              configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	// resource is NOT registered in the root scope
    	w := httptest.NewRecorder()
    	handler.ServeHTTP(w, &http.Request{Method: "GET", URL: &url.URL{Path: "/" + prefix + "/simple/test/sub"}})
    	if w.Code != http.StatusNotFound {
    		t.Errorf("expected not found: %#v", w)
    	}
    
    	// resource is registered in the namespace scope
    	w = httptest.NewRecorder()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
Back to top