basic-values.yaml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. ix_context:
  2. app_name: test
  3. notes: |
  4. This is a test
  5. # Image Configuration
  6. image:
  7. repository: nginx
  8. tag: ""
  9. pull_policy: missing
  10. # Container Configuration
  11. hostname: test
  12. restart_policy: "on-failure"
  13. max_retry_count: 0
  14. entrypoint: []
  15. command: []
  16. devices: []
  17. TZ: "Europe/Athens"
  18. envs:
  19. - name: test
  20. value: 123
  21. - name: UMASK
  22. value: "002"
  23. - name: PGID
  24. value: "568"
  25. disable_builtin_healthcheck: false
  26. tty: false
  27. stdin: false
  28. # Security Context Configuration
  29. privileged: false
  30. capabilities:
  31. add: []
  32. run_as_custom_user: false
  33. run_as:
  34. user: 568
  35. group: 568
  36. # Network Configuration
  37. host_network: false
  38. ports: []
  39. dns_config:
  40. nameservers: []
  41. searches: []
  42. options: []
  43. # General Configuration
  44. labels:
  45. - key: com.truenas.ix.app.labels.test
  46. value: 123
  47. # Portal Configuration
  48. portals:
  49. - name: Web UI
  50. scheme: https
  51. use_node_ip: true
  52. host: ""
  53. port: 443
  54. path: /admin
  55. - name: Admin UI
  56. scheme: http
  57. use_node_ip: false
  58. host: 192.168.1.100
  59. port: 80
  60. path: /
  61. ix_volumes:
  62. some_volume: /opt/tests/mnt/test_volume
  63. # Storage Configuration
  64. storage:
  65. - type: ix_volume
  66. mount_path: /opt/tests/mnt/test_volume
  67. ix_volume_config:
  68. dataset_name: some_volume
  69. create_host_path: true
  70. - type: tmpfs
  71. mount_path: /opt/tests/mnt/test_tmpfs
  72. tmpfs_config:
  73. size: 500
  74. - type: host_path
  75. mount_path: /opt/tests/mnt/test
  76. host_path_config:
  77. path: /test
  78. create_host_path: true
  79. # Resources Configuration
  80. resources:
  81. enable_resource_limits: false
  82. limits:
  83. cpus: 2.0
  84. memory: 4096
  85. gpus: {}