sergio_educacionit

services.yaml

Oct 15th, 2025
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. apiVersion: v1
  2. kind: Service
  3. metadata:
  4. name: wordpress
  5. spec:
  6. type: NodePort
  7. selector:
  8. app: wordpress
  9. ports:
  10. - port: 80
  11. targetPort: 80
  12. nodePort: 30080
  13.  
  14. ---
  15. apiVersion: v1
  16. kind: Service
  17. metadata:
  18. name: db
  19. spec:
  20. selector:
  21. app: db
  22. ports:
  23. - port: 3306
  24. targetPort: 3306
  25.  
Advertisement
Add Comment
Please, Sign In to add comment