Guest User

Untitled

a guest
Sep 24th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. apiVersion: extensions/v1beta1
  2. kind: Deployment
  3. metadata:
  4. name: app1
  5. namespace: default
  6. labels:
  7. app: app1
  8. spec:
  9. replicas: 10
  10. progressDeadlineSeconds: 60
  11. template:
  12. metadata:
  13. labels:
  14. app: app1
  15. spec:
  16. containers:
  17. - name: django
  18. image: saitejapakalapati/django_host_name
  19. resources:
  20. limits:
  21. cpu: "100m"
  22. memory: "50Mi"
  23. requests:
  24. cpu: "100m"
  25. memory: "50Mi"
  26. env:
  27. - name: PYTHONUNBUFFERED
  28. value: "0"
Add Comment
Please, Sign In to add comment