Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 244 for livenessProbe (0.17 sec)

  1. pkg/kube/inject/testdata/inject/hello-probes-proxyHoldApplication-ProxyConfig.yaml

            - name: http
              containerPort: 80
            livenessProbe:
              httpGet:
                port: http
            readinessProbe:
              httpGet:
                port: 3333
          - name: world
            image: "fake.docker.io/google-samples/hello-go-gke:1.0"
            ports:
            - name: http
              containerPort: 90
            livenessProbe:
              httpGet:
                port: http
            readinessProbe:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 13 08:52:02 UTC 2020
    - 995 bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/hello-probes-with-flag-set-in-annotation.yaml

                  containerPort: 80
              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                httpGet:
                  port: 3333
            - name: world
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
                  containerPort: 90
              livenessProbe:
                httpGet:
                  port: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 1K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/hello-probes-with-flag-unset-in-annotation.yaml

                  containerPort: 80
              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                httpGet:
                  port: 3333
            - name: world
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
                  containerPort: 90
              livenessProbe:
                httpGet:
                  port: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 1K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/ready_live.yaml

                  containerPort: 80
              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                httpGet:
                  port: 3333
            - name: world
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
                  containerPort: 90
              livenessProbe:
                httpGet:
                  port: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 956 bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/https-probes.yaml

                  containerPort: 80
              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                httpGet:
                  port: 3333
                  scheme: HTTPS
            - name: world
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
                  containerPort: 90
              livenessProbe:
                httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 984 bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/startup_ready_live.yaml

              ports:
                - name: http
                  containerPort: 80
              startupProbe:
                httpGet:
                  port: 3333
              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                httpGet:
                  port: 3333
            - name: world
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/hello-probes-noProxyHoldApplication-ProxyConfig.yaml

            - name: http
              containerPort: 80
            livenessProbe:
              httpGet:
                port: http
            readinessProbe:
              httpGet:
                port: 3333
          - name: world
            image: "fake.docker.io/google-samples/hello-go-gke:1.0"
            ports:
            - name: http
              containerPort: 90
            livenessProbe:
              httpGet:
                port: http
            readinessProbe:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 13 08:52:02 UTC 2020
    - 996 bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/hello-probes.yaml

                  containerPort: 80
              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                httpGet:
                  port: 3333
            - name: world
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
                  containerPort: 90
              livenessProbe:
                httpGet:
                  port: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 956 bytes
    - Viewed (0)
  9. pkg/kube/inject/app_probe_test.go

    		pod      *corev1.Pod
    		expected string
    	}{
    		{
    			name: "simple gRPC liveness probe",
    			pod: &corev1.Pod{Spec: corev1.PodSpec{
    				Containers: []corev1.Container{
    					{
    						Name: "foo",
    						LivenessProbe: &corev1.Probe{
    							ProbeHandler: corev1.ProbeHandler{
    								GRPC: &corev1.GRPCAction{
    									Port: 1234,
    								},
    							},
    						},
    					},
    				},
    			}},
    			expected: `
    {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/kube/testdata/two-workloads-one-nosidecar.yaml

            readinessProbe:
              httpGet:
                path: /
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top