1. 14 Feb, 2025 2 commits
    • Romain Courteaud's avatar
      slap/slap.py: drop parameter schema validation · fc3927b5
      Romain Courteaud authored
      The performance impact is way to important, as it requires to
      fetch all schema files.
      For history, one use case was: 10 seconds to validate, 50ms to request.
      
      Software releases should instead use the slapconfiguration:jsonschema
      recipe to reject wrong input.
      The recipe must use the schema informations stored on the installation directory.
      slapos!1638
      
      Move automated schema validation to the cli/request.py client.
      Inform when the client start the parameter validation, to spot slowness.
      fc3927b5
    • Romain Courteaud's avatar
      grid/slapgrid.py: reduce number of installation.available calls · b8d962a9
      Romain Courteaud authored
      No need to call everytime slapos node instance runs (every minute)
      b8d962a9
  2. 06 Feb, 2025 3 commits
  3. 05 Feb, 2025 8 commits
  4. 28 Jan, 2025 1 commit
  5. 27 Jan, 2025 1 commit
  6. 24 Jan, 2025 2 commits
  7. 14 Jan, 2025 9 commits
  8. 13 Jan, 2025 2 commits
    • Thomas Gambier's avatar
      Release 1.14.2 · 8e0ca4c2
      Thomas Gambier authored
      8e0ca4c2
    • Alain Takoudjou's avatar
      slapos.grid.promise: prevent json file corruption while updating data · d42de18b
      Alain Takoudjou authored
      history and statistics files are sometimes corrupted because of invalid json
      
      We do 2 things to improve this:
       1. we use json.load to read the previous file (this will detect if the file is corrupted)
       2. we use json.dump to write the entire file at once in a temporary file and then we move this file to be atomic.
      
      Probably this will consume more resources.
      
      See merge request !728
      d42de18b
  9. 10 Jan, 2025 2 commits
  10. 09 Jan, 2025 2 commits
  11. 07 Jan, 2025 1 commit
  12. 03 Jan, 2025 1 commit
  13. 02 Jan, 2025 5 commits
  14. 30 Dec, 2024 1 commit
    • Romain Courteaud's avatar
      slapos_panel: improve node's usage informations · 992b1053
      Romain Courteaud authored
      - directly show the software_release and sofware_type informations
      - instance title is meaningless on this view, as admin want to get an understanding of which kind of software are instanciated
      - drop creation_date, image columns
      992b1053