Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 342 for startupProbe (0.14 sec)

  1. pkg/apis/core/v1/defaults_test.go

    		".Spec.Containers[0].StartupProbe.FailureThreshold":              "3",
    		".Spec.Containers[0].StartupProbe.ProbeHandler.HTTPGet.Path":     `"/"`,
    		".Spec.Containers[0].StartupProbe.ProbeHandler.HTTPGet.Scheme":   `"HTTP"`,
    		".Spec.Containers[0].StartupProbe.PeriodSeconds":                 "10",
    		".Spec.Containers[0].StartupProbe.SuccessThreshold":              "1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/testdata/proxyless-custom-image.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
          - name: custom-grpc-app
            image: grpc/echo:cpp
            imagePullPolicy: Always
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/kube/inject/testdata/inject/startup_only.yaml

        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
                  containerPort: 80
              startupProbe:
                httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 530 bytes
    - Viewed (0)
Back to top