Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. apiVersion: v1
  2. kind: Pod
  3. metadata:
  4. name: pilot
  5. spec:
  6. containers:
  7. - name: pilot
  8. image: ubuntu:latest
  9. command: ["sleep"]
  10. args: ["infinity"]
  11. volumeMounts:
  12. - name: data
  13. mountPath: /home
  14. volumes:
  15. - name: data
  16. persistentVolumeClaim:
  17. claimName: pilot-pvc
  18. # ubuntu command line on the same network space with besu nodes
  19. # apiVersion: apps/v1
  20. # kind: Deployment
  21. # metadata:
  22. # name: pilot
  23. # labels: {
  24. # component: pilot
  25. # }
  26. # spec:
  27. # replicas: 1
  28. # selector:
  29. # matchLabels:
  30. # component: pilot
  31. # template:
  32. # metadata:
  33. # labels:
  34. # component: pilot
  35. # volumes:
  36. # - name: data
  37. # persistentVolumeClaim:
  38. # claimName: pilot-pvc
  39. # containers:
  40. # - name: pilot
  41. # image: ubuntu:latest
  42. # command: ["sleep"]
  43. # args: ["infinity"]
  44. # # volumeMounts:
  45. # # - mountPath: /host
  46. # # name: my-pv-storage
  47. # # - mountPath: /var/run
  48. # # name: host