sergio_educacionit

wordpress-pod.yaml

Oct 15th, 2025 (edited)
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. apiVersion: v1
  2. kind: Pod
  3. metadata:
  4. name: wordpress
  5. labels:
  6. app: wordpress
  7. spec:
  8. containers:
  9. - name: wordpress
  10. image: wordpress
  11. ports:
  12. - containerPort: 80
  13. env:
  14. - name: WORDPRESS_DB_HOST
  15. value: db
  16. - name: WORDPRESS_DB_USER
  17. value: exampleuser
  18. - name: WORDPRESS_DB_PASSWORD
  19. value: examplepass
  20. - name: WORDPRESS_DB_NAME
  21. value: exampledb
  22. volumeMounts:
  23. - mountPath: /var/www/html
  24. name: wordpress-storage
  25. volumes:
  26. - name: wordpress-storage
  27. persistentVolumeClaim:
  28. claimName: wordpress-pvc
  29.  
Advertisement
Add Comment
Please, Sign In to add comment