Skip to content
Snippets Groups Projects
  1. Nov 25, 2020
  2. Nov 06, 2020
  3. Oct 22, 2020
  4. Oct 06, 2020
    • Benjamin Bertrand's avatar
      Set network_scope group as parent of network groups · 983ae199
      Benjamin Bertrand authored
      All groups linked to a network are automatically added to the group
      linked to their network scope if it is defined.
      
      Note that it's not allowed to defined manual parent - child relationship
      between network groups or network scope groups (only the one based on
      scope/network is added automatically).
      
      WARNING! Do not use children.append() as it bypasses the setter. It will
      append the element to the object returned by the getter (as it's not the
      self._children list, it won't work anyway).
      
      JIRA INFRA-2639 #action In Progress
      983ae199
  5. Oct 02, 2020
  6. Jul 08, 2020
  7. Jun 08, 2020
  8. Mar 08, 2020
  9. Mar 05, 2020
  10. Feb 24, 2020
  11. Feb 03, 2020
  12. Dec 19, 2019
  13. Dec 18, 2019
  14. Dec 04, 2019
  15. Oct 29, 2019
  16. Oct 24, 2019
  17. Sep 18, 2019
  18. Sep 17, 2019
  19. Aug 22, 2019
    • Benjamin Bertrand's avatar
      Implement user access on network scope · a89b002f
      Benjamin Bertrand authored
      Replace previous implementation based on the domain.
      
      The domain can be changed per network but in practice we always use the
      same domain in a network scope.
      We currently have 9 network scopes but only 3 domains.
      Using the network scope gives us finer granularity in practice.
      
      JIRA INFRA-1228 #action In Progress
      a89b002f
  20. Jul 10, 2019
    • Benjamin Bertrand's avatar
      Fix sorting of items with some null stack_member · ab9b49b8
      Benjamin Bertrand authored
       '<' not supported between instances of 'NoneType' and 'int'
      
      Sorting worked if all stack_members were None, but not if some were null
      and some int.
      Fixed by converting None to Infinity (so None values are at the end of
      the list.
      
      JIRA INFRA-1112 #action In Progress
      ab9b49b8
    • Benjamin Bertrand's avatar
      Add extra items info to hosts json model · 0318858e
      Benjamin Bertrand authored
      Linked items are by default returned as a list of ICS id.
      When recursive is True, a list of {ics_id, serial_number, stack_member}
      is returned instead.
      
      Items are always returned sorted by stack_member or ics_id when
      stack_member is null.
      
      Allow to add the serial_number and stack_member to the Ansible variables
      in csentry dynamic inventory. Useful for switches.
      
      JIRA INFRA-1111 #action In Progress
      0318858e
  21. Jun 14, 2019
  22. Jun 13, 2019
  23. May 13, 2019
    • Benjamin Bertrand's avatar
      Remove caching of user retrieval · be364ef4
      Benjamin Bertrand authored
      The caching of the load_user function already created several bugs
      (INFRA 908/1018).
      It requires to think about adding (or deleting in the admin view)
      the current_user to the session. This is easy to miss.
      
      It saves some database queries but we don't need this optimization.
      Performances are not impacted and are good enough so far.
      
      Removing the caching makes the application more robust and easier to
      maintain.
      
      JIRA INFRA-1025 #action In Progress
      be364ef4
  24. May 10, 2019
    • Benjamin Bertrand's avatar
      Fix job.status DeprecationWarning · 2e0d01bf
      Benjamin Bertrand authored
      job.status shall be replaced with job.get_status() (RQ)
      
      JIRA INFRA-1021 #action In Progress
      2e0d01bf
    • Benjamin Bertrand's avatar
      Allow users to delete their host · a6811ba9
      Benjamin Bertrand authored
      - admin can delete any hosts
      - normal users can delete hosts they created
      
      Note that still only admin users can delete hosts via the API (more dangerous
      operation as a script could delete many hosts).
      
      JIRA INFRA-1018 #action In Progress
      a6811ba9
  25. May 09, 2019
    • Benjamin Bertrand's avatar
      Fix IOC indexation · 2b588173
      Benjamin Bertrand authored
      Regression from b9c1b838
      
      Calling utils.trigger_ioc_repository_creation runs launch_task
      which does a db.session.add(task). This raises:
      
      SAWarning: Usage of the 'Session.add()' operation is not currently
      supported within the execution stage of the flush process. Results may
      not be consistent.  Consider using alternative event listeners or
      connection-level operations instead.
      
      SAWarning: Attribute history events accumulated on 1 previously clean
      instances within inner-flush event handlers have been reset, and will
      not result in database updates.
      
      The result is that the host is not added to the elasticsearch index.
      
      We can't trigger the task in after_update/after_insert events.
      Perform the call in the view instead. It's temporary anyway. This should
      be handled by IOC Factory.
      
      JIRA INFRA-1015
      2b588173
  26. May 08, 2019
    • Benjamin Bertrand's avatar
      Fix IOC repository creation · b9c1b838
      Benjamin Bertrand authored
      The set event is triggered too early and no interface is yet associated
      to the host. The fqdn is thus set to the name.
      
      JIRA INFRA-1015 #action In Progress
      b9c1b838
Loading