Skip to content
Snippets Groups Projects
  1. Mar 05, 2019
    • Benjamin Bertrand's avatar
      Update VIOC core choices · cc6cf0c9
      Benjamin Bertrand authored
      cc6cf0c9
    • Benjamin Bertrand's avatar
      Remove tags and add is_ioc field to host table · f331b452
      Benjamin Bertrand authored
      Tags were basically only used for IOCs.
      Tags were linked to the interface (and not the host).
      But for IOC we assume it should always be the main (first) interface.
      
      Using a field on the host table will make it more obvious for users.
      
      Created a IOC dynamic group type, to create a group including all IOCs
      
      JIRA INFRA-862 #action In Progress
      f331b452
  2. Feb 28, 2019
    • Benjamin Bertrand's avatar
      Add view network page · 862e5f8d
      Benjamin Bertrand authored
      JIRA INFRA-860 #action In Progress
      862e5f8d
    • Benjamin Bertrand's avatar
      Clean networks view · e7c1bf6e
      Benjamin Bertrand authored
      No need to use ajax to retrieve the content of simple tables.
      
      For Ansible groups, it takes some time to retrieve the data due to the
      list of hosts for each group to compute. We keep the ajax request so
      that the page is displayed quickly. We might switch to server side
      processing (like for hosts).
      
      JIRA INFRA-860
      e7c1bf6e
    • Benjamin Bertrand's avatar
      Add gateway field to network table · 780a8c1c
      Benjamin Bertrand authored
      Allow to specify the gateway for each network
      
      JIRA INFRA-809
      780a8c1c
  3. Feb 07, 2019
  4. Feb 04, 2019
  5. Jan 29, 2019
    • Benjamin Bertrand's avatar
      Catch exception raised by Unique Validator · ce54e287
      Benjamin Bertrand authored
      The MAC field has both a Regexp and Unique validators.
      In wtforms, the validation doesn't stop on the first error (all
      validators are run).
      In case of invalid mac address, the Unique validator makes a request to
      the database that raises a DataError. This exception has to be catched.
      
      JIRA INFRA-777 #action In Progress
      ce54e287
  6. Jan 28, 2019
    • Benjamin Bertrand's avatar
      Version 0.17.0 · c996f74d
      Benjamin Bertrand authored
      0.17.0
      c996f74d
    • Benjamin Bertrand's avatar
      Add post install job after VM creation · 4d2dcf3b
      Benjamin Bertrand authored
      After a VM or VIOC creation, a post install job can be triggered.
      The job to trigger is based on the domain and defined in the
      AWX_POST_INSTALL dictionary.
      
      Admin users have the option to skip this post job if required.
      
      The job is enqueued in RQ with a dependency on the creation job.
      So it's only triggered after successful completion of the first one.
      
      JIRA INFRA-769
      4d2dcf3b
  7. Jan 25, 2019
  8. Jan 23, 2019
  9. Jan 19, 2019
  10. Dec 18, 2018
  11. Dec 10, 2018
    • Benjamin Bertrand's avatar
      Version 0.15.1 · 471cdfc1
      Benjamin Bertrand authored
      0.15.1
      471cdfc1
    • Benjamin Bertrand's avatar
      Fix extra interface creation · 1f85ed9f
      Benjamin Bertrand authored
      Not sure why a tuple instead of network was returned...
      There must have been a comma at the end of the line due to copy/pasting
      and black converted that to a tuple.
      
      Added a test for the create_interface function.
      
      JIRA INFRA-697 #action In Progress
      1f85ed9f
  12. Nov 30, 2018
    • Benjamin Bertrand's avatar
      Update Version 0.15.0 changelog · 537991a2
      Benjamin Bertrand authored
      0.15.0
      537991a2
    • Benjamin Bertrand's avatar
      Dash changed to underscore in flask commands · f9fe5937
      Benjamin Bertrand authored
      Linked to click update to 7.x
      
      Subcommands that are named by the function now automatically have the
      underscore replaced with a dash. If you register a function named
      my_command it becomes my-command in the command line interface.
      
      JIRA INFRA-687
      f9fe5937
    • Benjamin Bertrand's avatar
      Version 0.15.0 · c054d1b7
      Benjamin Bertrand authored
      c054d1b7
    • Benjamin Bertrand's avatar
      Fix test_create_host failure · 97844eba
      Benjamin Bertrand authored
      - create_host doesn't return 403 for user_lab but 200 because the form
        validation fails (the network_id is not part of the form choices)
      - caching disabled during tests
        the current_user could sometimes return a different username because of
        caching: the database is cleaned between each test, so different users
        can have the same id and an old user could be returned instead of the new
        one due to caching
      
      JIRA INFRA-578
      97844eba
    • Benjamin Bertrand's avatar
      Fix WhiteNoise static directory · 109b912e
      Benjamin Bertrand authored
      - flask-bootstrap dependency removed a while ago
      - the full static directory shall be passed
      
      JIRA INFRA-683
      109b912e
    • Benjamin Bertrand's avatar
      Update Python to 3.7.1 and dependencies · 58082763
      Benjamin Bertrand authored
      All dependencies upgraded except:
      - redis (3.0.1 not compatible with rq)
      - WTForms
      
      JIRA INFRA-684
      58082763
    • Benjamin Bertrand's avatar
      Add extra fields to the API · e6494e47
      Benjamin Bertrand authored
      - add fqdn to host
      - add gateway to network
      - add netmask to interface
      - allow to pass recursive via the API (to expand interfaces in host)
      - add is_main property to interface (True if the interface is the main
        interface of the host)
      
      JIRA INFRA-640
      e6494e47
  13. Nov 29, 2018
  14. Nov 28, 2018
  15. Nov 27, 2018
  16. Nov 09, 2018
Loading