Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 84 for livenessProbe (0.15 sec)

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

              path: pathValue
              port: portValue
              scheme: schemeValue
            sleep:
              seconds: 1
            tcpSocket:
              host: hostValue
              port: portValue
        livenessProbe:
          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. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.yaml

              path: pathValue
              port: portValue
              scheme: schemeValue
            sleep:
              seconds: 1
            tcpSocket:
              host: hostValue
              port: portValue
        livenessProbe:
          exec:
            command:
            - commandValue
          failureThreshold: 6
          grpc:
            port: 1
            service: serviceValue
          httpGet:
            host: hostValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 32.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/etcd/local.go

    					v1.ResourceMemory: resource.MustParse("100Mi"),
    				},
    			},
    			// 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),
    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. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

    kloads/pods/pod/#termination-of-pods. terminationGracePeri: 5 containers: # This container installs the Istio CNI binaries # and CNI network config file on each node. - name: install-cni image: "gcr.io/istio-release/install-cni:1.11.0-beta.1" livenessProbe: httpGet: path: /healthz port: 8000 initialDelaySeconds: 5 readinessProbe: httpGet: path: /readyz port: 8000 command: ["install-cni"] env: # The CNI network config to install on each node. - name: CNI_NETWORK_CONFIG valueFrom: configMapKeyRef:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/staticpod/utils.go

    	pod, ok := obj.(*v1.Pod)
    	if !ok {
    		return &v1.Pod{}, errors.Errorf("failed to parse Pod object defined in %q", manifestPath)
    	}
    
    	return pod, nil
    }
    
    // LivenessProbe creates a Probe object with a HTTPGet handler
    func LivenessProbe(host, path string, port int32, scheme v1.URIScheme) *v1.Probe {
    	// sets initialDelaySeconds same as periodSeconds to skip one period before running a check
    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. pkg/kubelet/prober/worker_test.go

    	// livenessProbe fails, but is disabled
    	m.prober.exec = fakeExecProber{probe.Failure, nil}
    	msg := "Not started, probe failure, result success"
    	expectContinue(t, w, w.doProbe(ctx), msg)
    	expectResult(t, w, results.Success, msg)
    	// setting started state
    	m.statusManager.SetContainerStartup(w.pod.UID, w.containerID, true)
    	// livenessProbe fails
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 23:48:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. samples/addons/kiali.yaml

            readinessProbe:
              httpGet:
                path: /kiali/healthz
                port: api-port
                scheme: HTTP
              initialDelaySeconds: 5
              periodSeconds: 30
            livenessProbe:
              httpGet:
                path: /kiali/healthz
                port: api-port
                scheme: HTTP
              initialDelaySeconds: 5
              periodSeconds: 30
            env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. samples/addons/prometheus.yaml

                  scheme: HTTP
                initialDelaySeconds: 0
                periodSeconds: 5
                timeoutSeconds: 4
                failureThreshold: 3
                successThreshold: 1
              livenessProbe:
                httpGet:
                  path: /-/healthy
                  port: 9090
                  scheme: HTTP
                initialDelaySeconds: 30
                periodSeconds: 15
                timeoutSeconds: 10
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. pkg/kubelet/prober/worker.go

    	}
    
    	switch probeType {
    	case readiness:
    		w.spec = container.ReadinessProbe
    		w.resultsManager = m.readinessManager
    		w.initialValue = results.Failure
    	case liveness:
    		w.spec = container.LivenessProbe
    		w.resultsManager = m.livenessManager
    		w.initialValue = results.Success
    	case startup:
    		w.spec = container.StartupProbe
    		w.resultsManager = m.startupManager
    		w.initialValue = results.Unknown
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/prober_manager.go

    					"pod", klog.KObj(pod), "containerName", c.Name)
    				return
    			}
    			w := newWorker(m, readiness, pod, c)
    			m.workers[key] = w
    			go w.run()
    		}
    
    		if c.LivenessProbe != nil {
    			key.probeType = liveness
    			if _, ok := m.workers[key]; ok {
    				klog.V(8).ErrorS(nil, "Liveness probe already exists for container",
    					"pod", klog.KObj(pod), "containerName", c.Name)
    				return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top