Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 645 for livez (0.31 sec)

  1. pkg/kube/inject/testdata/inject/https-probes.yaml.injected

            - name: TRUST_DOMAIN
              value: cluster.local
            - name: ISTIO_KUBE_APP_PROBERS
              value: '{"/app-health/hello/livez":{"httpGet":{"port":80}},"/app-health/hello/readyz":{"httpGet":{"port":3333,"scheme":"HTTPS"}},"/app-health/world/livez":{"httpGet":{"port":90}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
            ports:
            - containerPort: 15090
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/hello-probes-localhost.yaml.injected

              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            - name: ISTIO_KUBE_APP_PROBERS
              value: '{"/app-health/hello/livez":{"httpGet":{"port":80}},"/app-health/hello/readyz":{"httpGet":{"port":3333}},"/app-health/world/livez":{"httpGet":{"port":90}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
            ports:
            - containerPort: 15090
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/hello-probes-proxyHoldApplication-ProxyConfig.yaml.injected

              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            - name: ISTIO_KUBE_APP_PROBERS
              value: '{"/app-health/hello/livez":{"httpGet":{"port":80}},"/app-health/hello/readyz":{"httpGet":{"port":3333}},"/app-health/world/livez":{"httpGet":{"port":90}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            lifecycle:
              postStart:
                exec:
                  command:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/hello-probes-with-flag-set-in-annotation.yaml.injected

              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            - name: ISTIO_KUBE_APP_PROBERS
              value: '{"/app-health/hello/livez":{"httpGet":{"port":80}},"/app-health/hello/readyz":{"httpGet":{"port":3333}},"/app-health/world/livez":{"httpGet":{"port":90}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
            ports:
            - containerPort: 15090
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/merge-probers.yaml

              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            - name: ISTIO_KUBE_APP_PROBERS
              value: '{"/app-health/hello/livez":{"httpGet":{"port":80}},"/app-health/hello/readyz":{"httpGet":{"port":3333}},"/app-health/world/livez":{"httpGet":{"port":90}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            lifecycle:
              postStart:
                exec:
                  command:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 09 02:54:48 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/startup_ready_live.yaml.injected

            - name: TRUST_DOMAIN
              value: cluster.local
            - name: ISTIO_KUBE_APP_PROBERS
              value: '{"/app-health/hello/livez":{"httpGet":{"port":80}},"/app-health/hello/readyz":{"httpGet":{"port":3333}},"/app-health/hello/startupz":{"httpGet":{"port":3333}},"/app-health/world/livez":{"httpGet":{"port":90}},"/app-health/world/startupz":{"httpGet":{"port":90}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
    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. pkg/kube/inject/app_probe.go

    	}
    }
    
    func convertProbe(c *corev1.Container, statusPort int) {
    	readyz, livez, startupz := status.FormatProberURL(c.Name)
    	if probePatch := convertAppProber(c.ReadinessProbe, readyz, statusPort); probePatch != nil {
    		c.ReadinessProbe = probePatch
    	}
    	if probePatch := convertAppProber(c.LivenessProbe, livez, statusPort); probePatch != nil {
    		c.LivenessProbe = probePatch
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. pkg/kube/inject/app_probe_test.go

    							ProbeHandler: corev1.ProbeHandler{
    								GRPC: &corev1.GRPCAction{
    									Port: 1234,
    								},
    							},
    						},
    					},
    				},
    			}},
    			expected: `
    {
        "/app-health/foo/livez": {
            "grpc": {
                "port": 1234,
                "service": null
            }
        }
    }`,
    		},
    		{
    			name: "gRPC readiness probe with service",
    			pod: &corev1.Pod{Spec: corev1.PodSpec{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/one_container.yaml.injected

            tier: backend
            track: stable
        spec:
          containers:
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            livenessProbe:
              httpGet:
                path: /app-health/hello/livez
                port: 15020
            name: hello
            ports:
            - containerPort: 80
              name: http
            readinessProbe:
              httpGet:
                path: /app-health/hello/readyz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/tcp-probes.yaml.injected

            tier: backend
            track: stable
        spec:
          containers:
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            livenessProbe:
              httpGet:
                path: /app-health/hello/livez
                port: 15020
            name: hello
            ports:
            - containerPort: 80
              name: http
            readinessProbe:
              httpGet:
                path: /app-health/hello/readyz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top