Guest User

Untitled

a guest
Oct 24th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. apiVersion: extensions/v1beta1
  2. kind: Deployment
  3. metadata:
  4. name: foo
  5. spec:
  6. replicas: 1
  7. template:
  8. metadata:
  9. labels:
  10. name: foo
  11. spec:
  12. containers:
  13. - name: foo
  14. image: username/image:tag
  15. # command that to be executed at run time
  16. command: ["bar"]
  17. args:
  18. # This is the flag to pass at runtime
  19. - -a=A
  20. - -b=B
  21. ports:
  22. - containerPort: 9500
Add Comment
Please, Sign In to add comment