basic-values.yaml 652 B

123456789101112131415161718192021222324252627282930313233343536
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. kitchenowl:
  6. postgres_image_selector: postgres_17_image
  7. db_password: secret
  8. jwt_secret_key: secret
  9. additional_envs: []
  10. network:
  11. web_port:
  12. bind_mode: published
  13. port_number: 8080
  14. run_as:
  15. user: 568
  16. group: 568
  17. ix_volumes:
  18. data: /opt/tests/mnt/kitchenowl/data
  19. postgres_data: /opt/tests/mnt/kitchenowl/postgres_data
  20. storage:
  21. data:
  22. type: ix_volume
  23. ix_volume_config:
  24. dataset_name: data
  25. create_host_path: true
  26. postgres_data:
  27. type: ix_volume
  28. ix_volume_config:
  29. dataset_name: postgres_data
  30. create_host_path: true
  31. additional_storage: []