Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 351 for readinessProbe (0.17 sec)

  1. pkg/test/framework/components/echo/kube/testdata/disable-automount-sa.yaml

              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
            - name: NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
            readinessProbe:
              httpGet:
                path: /
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. 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)
  3. pkg/test/framework/components/echo/kube/testdata/proxyless.yaml

            - name: NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
            - name: EXPOSE_GRPC_ADMIN
              value: "true"
            readinessProbe:
              httpGet:
                path: /
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/ztunnel.golden.yaml

            image: gcr.io/istio-testing/ztunnel:latest-distroless
            name: istio-proxy
            ports:
            - containerPort: 15020
              name: ztunnel-stats
              protocol: TCP
            readinessProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
            resources:
              limits:
                cpu: 200m
                memory: 200Mi
              requests:
                cpu: 100m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 23:49:40 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. pkg/istio-agent/health/health_check_test.go

    	t.Run("tcp", func(t *testing.T) {
    		listener, err := NewDelayedListener()
    		assert.NoError(t, err)
    		tcpHealthChecker := NewWorkloadHealthChecker(&v1alpha3.ReadinessProbe{
    			InitialDelaySeconds: 0,
    			TimeoutSeconds:      1,
    			PeriodSeconds:       1,
    			SuccessThreshold:    1,
    			FailureThreshold:    1,
    			HealthCheckMethod: &v1alpha3.ReadinessProbe_TcpSocket{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 16:50:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. samples/addons/jaeger.yaml

                  value: "50000"
                - name: QUERY_BASE_PATH
                  value: /jaeger
              livenessProbe:
                httpGet:
                  path: /
                  port: 14269
              readinessProbe:
                httpGet:
                  path: /
                  port: 14269
              volumeMounts:
                - name: data
                  mountPath: /badger
              resources:
                requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. cluster/addons/metrics-server/metrics-server-deployment.yaml

            - --cert-dir=/tmp
            - --secure-port=10250
            ports:
            - containerPort: 10250
              name: https
              protocol: TCP
            readinessProbe:
              httpGet:
                path: /readyz
                port: https
                scheme: HTTPS
              periodSeconds: 10
              failureThreshold: 3
            livenessProbe:
              httpGet:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/output/install_package_path.golden.yaml

            name: discovery
            ports:
            - containerPort: 8080
              protocol: TCP
            - containerPort: 15010
              protocol: TCP
            - containerPort: 15017
              protocol: TCP
            readinessProbe:
              httpGet:
                path: /ready
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 3
              timeoutSeconds: 5
            resources:
              requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    	b.LivenessProbe = value
    	return b
    }
    
    // WithReadinessProbe sets the ReadinessProbe 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 ReadinessProbe 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)
  10. operator/cmd/mesh/testdata/manifest-generate/output/flag_output.golden.yaml

            name: discovery
            ports:
            - containerPort: 8080
              protocol: TCP
            - containerPort: 15010
              protocol: TCP
            - containerPort: 15017
              protocol: TCP
            readinessProbe:
              httpGet:
                path: /ready
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 3
              timeoutSeconds: 5
            resources:
              requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top