Advertisement
thesuhu

Kubernetes Deployment

Oct 14th, 2020
2,300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.25 KB | None | 0 0
  1. # deploy latest image agar selalu ambil yang terupdate, tambahkan imagePullPolicy: "Always" di file yaml. contoh:
  2. spec:
  3.   terminationGracePeriodSeconds: 30
  4.   containers:
  5.   - name: my_container
  6.     image: my_image:latest
  7.     imagePullPolicy: "Always"
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement