Difference between revisions of "LivenessProbe"

From wikieduonline
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
{{lc}}
 
{{lc}}
[[kubectl describe]] pod liveness-http
 
Error from server (NotFound): pods "liveness-http" not found
 
  
 +
Example:
 +
{{Liveness official example}}
  
  
Line 22: Line 22:
  
  
{{Liveness official example}}
+
 
  
  
 
[[Kubernetes v1.27]] ([[Apr 2023]]):
 
[[Kubernetes v1.27]] ([[Apr 2023]]):
 
{{GRPC liveness probe example}}
 
{{GRPC liveness probe example}}
 +
 +
== Errors ==
 +
[[kubectl describe]] pod liveness-http
 +
Error from server (NotFound): pods "liveness-http" not found
  
 
== Related ==
 
== Related ==

Latest revision as of 10:27, 3 October 2024

Example:

apiVersion: v1
kind: Pod
metadata:
  labels:
    test: liveness
  name: liveness-http
spec:
  containers:
  - name: liveness
    image: registry.k8s.io/e2e-test-images/agnhost:2.40
    args:
    - liveness
    livenessProbe:
      httpGet:
        path: /healthz
        port: 8080
        httpHeaders:
        - name: Custom-Header
          value: Awesome
      initialDelaySeconds: 3
      periodSeconds: 3


helm show all grafana/grafana
.../...
readinessProbe:
  httpGet:
    path: /api/health
    port: 3000

livenessProbe:
  httpGet:
    path: /api/health
    port: 3000
  initialDelaySeconds: 60
  timeoutSeconds: 30
  failureThreshold: 10
.../...



Kubernetes v1.27 (Apr 2023):

apiVersion: v1
kind: Pod
metadata:
  name: etcd-with-grpc
spec:
  containers:
  - name: etcd
    image: registry.k8s.io/etcd:3.5.1-0
    command: [ "/usr/local/bin/etcd", "--data-dir",  "/var/lib/etcd", "--listen-client-urls", "http://0.0.0.0:2379", "--advertise-client-urls", "http://127.0.0.1:2379", "--log-level", "debug"]
    ports:
    - containerPort: 2379
    livenessProbe:
      grpc:
        port: 2379
      initialDelaySeconds: 10

Errors[edit]

kubectl describe pod liveness-http
Error from server (NotFound): pods "liveness-http" not found

Related[edit]

See also[edit]

Advertising: