k3s.yml 602 B

1234567891011121314151617181920212223242526272829303132
  1. ---
  2. apiVersion: v1
  3. kind: List
  4. items:
  5. - apiVersion: v1
  6. kind: Namespace
  7. metadata:
  8. namespace: ''
  9. name: test
  10. - apiVersion: apps/v1
  11. kind: Deployment
  12. metadata:
  13. labels:
  14. app: php-hello
  15. namespace: test
  16. name: php-hello
  17. spec:
  18. replicas: 1
  19. selector:
  20. matchLabels:
  21. app: php-hello
  22. strategy: {}
  23. template:
  24. metadata:
  25. labels:
  26. app: php-hello
  27. spec:
  28. containers:
  29. - image: quay.io/rhtuser/php-hello:ancient
  30. name: php-hello
  31. resources: {}
  32. ...