Guest User

Untitled

a guest
Dec 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. name: tensorflow
  5. labels:
  6. app: tensorflow
  7. spec:
  8. replicas: 1
  9. selector:
  10. matchLabels:
  11. app: tensorflow
  12. template:
  13. metadata:
  14. labels:
  15. app: tensorflow
  16. spec:
  17. containers:
  18. - name: tensorflow
  19. image: tensorflow/tensorflow
  20. ports:
  21. - containerPort: 8888
  22. ---
  23. apiVersion: v1
  24. kind: Service
  25. metadata:
  26. name: tensorflow
  27. spec:
  28. ports:
  29. - port: 80
  30. targetPort: 8888
  31. protocol: TCP
  32. type: LoadBalancer
  33. selector:
  34. app: tensorflow
Add Comment
Please, Sign In to add comment