Difference between revisions of "Template:Liveness official example"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
 
(One intermediate revision by the same user not shown)
Line 8: Line 8:
 
   containers:
 
   containers:
 
   - name: liveness
 
   - name: liveness
     image: registry.k8s.io/e2e-test-images/agnhost:2.40
+
     image: [[registry.k8s.io]]/e2e-test-images/agnhost:2.40
 
     args:
 
     args:
 
     - liveness
 
     - liveness
Line 15: Line 15:
 
         path: /healthz
 
         path: /healthz
 
         port: 8080
 
         port: 8080
         httpHeaders:
+
         [[httpHeaders]]:
 
         - name: Custom-Header
 
         - name: Custom-Header
 
           value: Awesome
 
           value: Awesome
 
       initialDelaySeconds: 3
 
       initialDelaySeconds: 3
 
       periodSeconds: 3
 
       periodSeconds: 3

Latest revision as of 08:24, 7 November 2024

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

Advertising: