Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 337 for startupProbe (0.33 sec)

  1. pkg/test/framework/components/echo/kube/testdata/two-workloads-one-nosidecar.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
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: foo-nosidecar
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/startup_live.yaml.injected

              httpGet:
                path: /app-health/hello/livez
                port: 15020
            name: hello
            ports:
            - containerPort: 80
              name: http
            resources: {}
            startupProbe:
              httpGet:
                path: /app-health/hello/startupz
                port: 15020
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            livenessProbe:
              httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/testdata/multiversion.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
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: multiversion-v-legacy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions-no-proxy.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
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: foo-bar-rev-b
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions.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
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: foo-bar-rev-b
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/startup_ready_live.yaml.injected

            ports:
            - containerPort: 80
              name: http
            readinessProbe:
              httpGet:
                path: /app-health/hello/readyz
                port: 15020
            resources: {}
            startupProbe:
              httpGet:
                path: /app-health/hello/startupz
                port: 15020
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            livenessProbe:
              httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. hack/testdata/pod-with-metadata-and-probes.yaml

        name: target
        readinessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        livenessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        startupProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
      initContainers:
      - image: busybox
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 17:26:20 UTC 2024
    - 471 bytes
    - Viewed (0)
  8. samples/grpc-echo/grpc-echo.yaml

                  path: /
                  port: 8080
                  scheme: HTTP
                initialDelaySeconds: 1
                periodSeconds: 2
                successThreshold: 1
                timeoutSeconds: 1
              startupProbe:
                failureThreshold: 10
                periodSeconds: 10
                successThreshold: 1
                tcpSocket:
                  port: tcp-health-port
                timeoutSeconds: 1
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/controlplane/manifests.go

    			ReadinessProbe:  staticpodutil.ReadinessProbe(staticpodutil.GetAPIServerProbeAddress(endpoint), "/readyz", endpoint.BindPort, v1.URISchemeHTTPS),
    			StartupProbe:    staticpodutil.StartupProbe(staticpodutil.GetAPIServerProbeAddress(endpoint), "/livez", endpoint.BindPort, v1.URISchemeHTTPS, componentHealthCheckTimeout),
    			Resources:       staticpodutil.ComponentResources("250m"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. pkg/kube/inject/app_probe_test.go

        }
    }`,
    		},
    		{
    			name: "gRPC startup probe with service and timeout",
    			pod: &corev1.Pod{Spec: corev1.PodSpec{
    				Containers: []corev1.Container{
    					{
    						Name: "foo",
    						StartupProbe: &corev1.Probe{
    							ProbeHandler: corev1.ProbeHandler{
    								GRPC: &corev1.GRPCAction{
    									Port:    1234,
    									Service: &svc,
    								},
    							},
    							TimeoutSeconds: 10,
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top