Skip to content
Snippets Groups Projects
  1. Apr 02, 2019
  2. Mar 27, 2019
    • Benjamin Bertrand's avatar
      Version 0.19.2 · bf14cc97
      Benjamin Bertrand authored
      0.19.2
      bf14cc97
    • Benjamin Bertrand's avatar
      Add depends_on field on Task · ebae1b17
      Benjamin Bertrand authored
      Allow to trigger a new core service update only if there is none
      depending on the triggered inventory update.
      
      JIRA INFRA-895
      ebae1b17
    • Benjamin Bertrand's avatar
      Increase timeout for core services update · 27b44173
      Benjamin Bertrand authored
      As the core service update doesn't depend anymore on each other but only
      on the inventory update, 2 can be launched almost at the same time.
      As they can't run in parallel, the second one will only start when the
      first one is done, meaning that it can take more than 180 seconds to
      complete.
      
      Increasing the timeout to 500 seconds should avoid the task to be
      reported as failed when it just took longer to run.
      
      JIRA INFRA-895 #action In Progress
      27b44173
    • Benjamin Bertrand's avatar
      Fix model update in admin interface · 88f54ded
      Benjamin Bertrand authored
      Following exception is raised when trying to update a network from
      flask-admin:
      sqlalchemy.exc.InvalidRequestError: Can't attach instance <User at 0x7f6f0e39ce10>;
      another instance with key (<class 'app.models.User'>, (1,), None) is already present in this session.
      
      1. If we remove the caching of the load_user method, the problem
      disappears.
      2. When updating a Network, this trigger an inventory update in
      before_flush which adds a task to the session. This is when the
      current_user is added to the session and the error raised.
      
      So the problem is linked to the user caching and flask-admin.
      
      The workaround is to remove the user object added by flask-admin to the
      session.
      
      JIRA INFRA-908 #action In Progress
      88f54ded
  3. Mar 18, 2019
    • Benjamin Bertrand's avatar
      Version 0.19.1 · 5b55f0ef
      Benjamin Bertrand authored
      0.19.1
      5b55f0ef
    • Benjamin Bertrand's avatar
      Skip post install for windows VM creation · ef41ee85
      Benjamin Bertrand authored
      Windows VM creation doesn't support post install yet
      - the job that creates the VM returns before the installation is done
      - the post install template is Linux only right now
      
      JIRA INFRA-877
      ef41ee85
    • Benjamin Bertrand's avatar
      Fix excel file download · 87b40eb6
      Benjamin Bertrand authored
      The /status/<job_id> view was only looking in the "default" queue to
      retrieve the job.
      "default" is not used anymore and was replaced by "high", "normal",
      "low".
      The method Job.fetch doesn't look in a specific queue.
      
      JIRA INFRA-890 #action In Progress
      87b40eb6
    • Benjamin Bertrand's avatar
      Removed unused update_inventory function · 8d737f58
      Benjamin Bertrand authored
      launch_awx_job function was updated to trigger an inventory update.
      8d737f58
    • Benjamin Bertrand's avatar
      Version 0.19.0 · 540732dc
      Benjamin Bertrand authored
      0.19.0
      540732dc
    • Benjamin Bertrand's avatar
      Trigger AWX inventory update on database change · e000c2f0
      Benjamin Bertrand authored
      A job running in AWX prevents an inventory sync (of the same
      inventory). This restricts AWX to run only one job at a time as
      the inventory is always updated on launch.
      To prevent this issue, the inventory is updated from AWX when needed.
      
      - The update is triggered on any model modification that is used in the
      inventory (AnsibleGroup, Cname, Domain, Host, Network, NetworkScope)
      - For Interface, the inventory sync is triggered by the
      trigger_core_services function as it depends on it
      - The inventory update job is put on the "high" queue so that it takes
      precedence over all other jobs.
      
      JIRA INFRA-887 #action In Progress
      e000c2f0
    • Benjamin Bertrand's avatar
      Use queues of different priorities · f30a711b
      Benjamin Bertrand authored
      Ensure that the trigger_core_services_update job is always processed
      before the other jobs (low queue).
      
      JIRA INFRA-887
      f30a711b
    • Benjamin Bertrand's avatar
      Allow users to create VM/VIOC · 8f209774
      Benjamin Bertrand authored
      - users with access to the network can create VIOC
      - VM can be created only in the ALLOWED_VM_CREATION_DOMAINS
      
      JIRA INFRA-775
      8f209774
    • Benjamin Bertrand's avatar
      Fix link to AWX job id for workflow jobs · 0d0471b7
      Benjamin Bertrand authored
      Add awx_resource field to the task table.
      The field is None for local tasks (like excel file creation).
      It's the awx resource used to launch the job otherwise.
      Currently job or workflow_job.
      
      JIRA INFRA-886 #action In Progress
      0d0471b7
    • Benjamin Bertrand's avatar
      Add osversion field to CreateVMForm · dbe8ad11
      Benjamin Bertrand authored
      - vm_osversion is passed as extra variables to the create_vm job
      template
      - vm_cores/vm_memory/vm_disk_size are also passed as extra variables
      instead of saving them as host variables. Saving the variables in the
      host when submitting the form forces to update the inventory before to
      trigger the job to create the VM. This can be avoided using extra
      variables. Furthermore those variables don't need to be in the
      inventory, they can be retrieved as facts.
      
      JIRA INFRA-877
      dbe8ad11
  4. Mar 07, 2019
  5. Mar 06, 2019
  6. Mar 05, 2019
    • Benjamin Bertrand's avatar
      Version 0.18.0 · 9d2bdae1
      Benjamin Bertrand authored
      0.18.0
      9d2bdae1
    • Benjamin Bertrand's avatar
      Allow to launch a workflow job · 7cdc15f4
      Benjamin Bertrand authored
      New resource argument can be passed to launch_job_template.
      It is optional and is set to "job" by default.
      Shall be set to "workflow_job" to run a workflow template.
      
      Note that passing the workflow name didn't work during my test.
      The id had to be used instead.
      
      JIRA INFRA-867 #action In Progress
      7cdc15f4
    • 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
  7. 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
  8. Feb 07, 2019
  9. Feb 04, 2019
  10. 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
  11. 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
  12. Jan 25, 2019
Loading