Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 337 for startupProbe (0.22 sec)

  1. pkg/kube/inject/app_probe.go

    	}
    	if probePatch := convertAppProber(c.LivenessProbe, livez, statusPort); probePatch != nil {
    		c.LivenessProbe = probePatch
    	}
    	if probePatch := convertAppProber(c.StartupProbe, startupz, statusPort); probePatch != nil {
    		c.StartupProbe = probePatch
    	}
    }
    
    // kubeProbeToInternalProber converts a Kubernetes Probe to an Istio internal Prober
    func kubeProbeToInternalProber(probe *corev1.Probe) *Prober {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/testdata/proxyless.yaml

              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
              failureThreshold: 10
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    			expectedGracePeriod: shortGracePeriod,
    		},
    		{
    			name: "startup probe overrides pod termination grace period",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{{
    						Name: "foo", StartupProbe: &v1.Probe{TerminationGracePeriodSeconds: &shortGracePeriod},
    					}},
    					TerminationGracePeriodSeconds: &longGracePeriod,
    				},
    			},
    			reason:              reasonStartupProbe,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.values.gen.yaml

            "limits": {
              "cpu": "2000m",
              "memory": "1024Mi"
            },
            "requests": {
              "cpu": "100m",
              "memory": "128Mi"
            }
          },
          "startupProbe": {
            "enabled": true,
            "failureThreshold": 600
          },
          "statusPort": 15020,
          "tracer": "none"
        },
        "proxy_init": {
          "image": "proxyv2"
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    	b.ReadinessProbe = value
    	return b
    }
    
    // WithStartupProbe sets the StartupProbe field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the StartupProbe field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/list.yaml.injected

                  drop:
                  - ALL
                privileged: false
                readOnlyRootFilesystem: true
                runAsGroup: 1337
                runAsNonRoot: true
                runAsUser: 1337
              startupProbe:
                failureThreshold: 600
                httpGet:
                  path: /healthz/ready
                  port: 15021
                periodSeconds: 1
                timeoutSeconds: 3
              volumeMounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

                drop:
                - ALL
              privileged: false
              readOnlyRootFilesystem: true
              runAsGroup: 1337
              runAsNonRoot: true
              runAsUser: 1337
            startupProbe:
              failureThreshold: 600
              httpGet:
                path: /healthz/ready
                port: 15021
              periodSeconds: 1
              timeoutSeconds: 3
            volumeMounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/worker_test.go

    	m.statusManager.SetPodStatus(w.pod, getTestRunningStatusWithStarted(false))
    	// startupProbe fails < FailureThreshold, stays unknown
    	m.prober.exec = fakeExecProber{probe.Failure, nil}
    	msg := "Not started, probe failure, result unknown"
    	expectContinue(t, w, w.doProbe(ctx), msg)
    	expectResult(t, w, results.Unknown, msg)
    	// startupProbe succeeds
    	m.prober.exec = fakeExecProber{probe.Success, nil}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 23:48:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.DaemonSet.json

                  "periodSeconds": 4,
                  "successThreshold": 5,
                  "failureThreshold": 6,
                  "terminationGracePeriodSeconds": 7
                },
                "startupProbe": {
                  "exec": {
                    "command": [
                      "commandValue"
                    ]
                  },
                  "httpGet": {
                    "path": "pathValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.Deployment.json

                  "periodSeconds": 4,
                  "successThreshold": 5,
                  "failureThreshold": 6,
                  "terminationGracePeriodSeconds": 7
                },
                "startupProbe": {
                  "exec": {
                    "command": [
                      "commandValue"
                    ]
                  },
                  "httpGet": {
                    "path": "pathValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.7K bytes
    - Viewed (0)
Back to top