Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

          timeoutSeconds: 3
        name: nameValue
        ports:
        - containerPort: 3
          hostIP: hostIPValue
          hostPort: 2
          name: nameValue
          protocol: protocolValue
        readinessProbe:
          exec:
            command:
            - commandValue
          failureThreshold: 6
          grpc:
            port: 1
            service: serviceValue
          httpGet:
            host: hostValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    )
    
    func init() {
    	// Disable gRPC tracing. It has performance impacts (See https://github.com/grpc/grpc-go/issues/695)
    	grpc.EnableTracing = false
    }
    
    // readinessProbe defines a function that will be used indicate whether a server is ready.
    type readinessProbe func() bool
    
    // Server contains the runtime configuration for the Pilot discovery service.
    type Server struct {
    	XDSServer *xds.DiscoveryServer
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/etcd/local.go

    			// The etcd probe endpoints are explained here:
    			// https://github.com/kubernetes/kubeadm/issues/3039
    			LivenessProbe:  staticpodutil.LivenessProbe(probeHostname, "/livez", probePort, probeScheme),
    			ReadinessProbe: staticpodutil.ReadinessProbe(probeHostname, "/readyz", probePort, probeScheme),
    			StartupProbe:   staticpodutil.StartupProbe(probeHostname, "/readyz", probePort, probeScheme, componentHealthCheckTimeout),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  4. cmd/kubeadm/app/phases/controlplane/manifests.go

    			LivenessProbe:   staticpodutil.LivenessProbe(staticpodutil.GetAPIServerProbeAddress(endpoint), "/livez", endpoint.BindPort, v1.URISchemeHTTPS),
    			ReadinessProbe:  staticpodutil.ReadinessProbe(staticpodutil.GetAPIServerProbeAddress(endpoint), "/readyz", endpoint.BindPort, v1.URISchemeHTTPS),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/staticpod/utils.go

    	// sets initialDelaySeconds same as periodSeconds to skip one period before running a check
    	return createHTTPProbe(host, path, port, scheme, 10, 15, 8, 10)
    }
    
    // ReadinessProbe creates a Probe object with a HTTPGet handler
    func ReadinessProbe(host, path string, port int32, scheme v1.URIScheme) *v1.Probe {
    	// sets initialDelaySeconds as '0' because we don't want to delay user infrastructure checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

                path: /healthz/ready
                port: 15021
                scheme: HTTP
              initialDelaySeconds: 1
              periodSeconds: 1
              successThreshold: 1
              timeoutSeconds: 1
            readinessProbe:
              failureThreshold: 4
              httpGet:
                path: /healthz/ready
                port: 15021
                scheme: HTTP
              initialDelaySeconds: 0
              periodSeconds: 15
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-egress/templates/deployment.yaml

                capabilities:
                  drop:
                  - ALL
                privileged: false
                readOnlyRootFilesystem: true
            {{- end }}
              readinessProbe:
                failureThreshold: 30
                httpGet:
                  path: /healthz/ready
                  port: 15021
                  scheme: HTTP
                initialDelaySeconds: 1
                periodSeconds: 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

                path: /healthz/ready
                port: 15021
                scheme: HTTP
              initialDelaySeconds: 1
              periodSeconds: 1
              successThreshold: 1
              timeoutSeconds: 1
            readinessProbe:
              failureThreshold: 4
              httpGet:
                path: /healthz/ready
                port: 15021
                scheme: HTTP
              initialDelaySeconds: 0
              periodSeconds: 15
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

                capabilities:
                  drop:
                  - ALL
                privileged: false
                readOnlyRootFilesystem: true
            {{- end }}
              readinessProbe:
                failureThreshold: 30
                httpGet:
                  path: /healthz/ready
                  port: 15021
                  scheme: HTTP
                initialDelaySeconds: 1
                periodSeconds: 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. samples/addons/kiali.yaml

              capabilities:
                drop:
                - ALL
            ports:
            - name: api-port
              containerPort: 20001
            - name: http-metrics
              containerPort: 9090
            readinessProbe:
              httpGet:
                path: /kiali/healthz
                port: api-port
                scheme: HTTP
              initialDelaySeconds: 5
              periodSeconds: 30
            livenessProbe:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top