Skip to content
Snippets Groups Projects
main.yml 1.95 KiB
Newer Older
  • Learn to ignore specific revisions
  • Marica Antonacci's avatar
    Marica Antonacci committed
    ---
    # tasks file for paas-ci
    - name: "Check Orchestrator endpoint"
      uri:
        url: "{{ paas_ci_orchestrator_url }}"
    
    
    Marica Antonacci's avatar
    Marica Antonacci committed
    - debug:
        var: paas_ci_workdir
    
    
    Marica Antonacci's avatar
    Marica Antonacci committed
    - block:
      - name: Get template
        get_url:
    
    Marica Antonacci's avatar
    Marica Antonacci committed
          url: "{{ paas_ci_test.template_url }}"
          dest: "{{ paas_ci_workdir }}"
    
      - name: Deployment command
        set_fact:
          depcreate_cmd: "orchent depcreate --ojson single_vm.yaml -g beta-testers {{ paas_ci_test.inputs }}"
    
      - name:  Create the deployment
        command: "{{depcreate_cmd}}"
    
    Marica Antonacci's avatar
    Marica Antonacci committed
        chdir: "{{ paas_ci_workdir }}"
    
    Marica Antonacci's avatar
    Marica Antonacci committed
        register: depcreate_output
        failed_when: "'CREATE' not in depcreate_output.stdout"
    
      - set_fact:
          deployment: "{{ depcreate_output.stdout|from_json }}"
    
      - name: Sleep for 60 seconds and timeout
        wait_for:
          delay: 60
          timeout: 0
    
    Marica Antonacci's avatar
    Marica Antonacci committed
    
    
    Marica Antonacci's avatar
    Marica Antonacci committed
      - name:  Check the deployment status (every 5 mins)
        command: orchent depshow --ojson "{{ deployment.uuid }}"
        register: depshow_output
        until: "'PROGRESS' not in depshow_output.stdout"
        retries: 10
        delay: 300
        failed_when: "'error' in depshow_output.stdout"
    
    Marica Antonacci's avatar
    Marica Antonacci committed
    
    
    Marica Antonacci's avatar
    Marica Antonacci committed
      - set_fact:
          deployment: "{{ depshow_output.stdout|from_json }}"
    
    Marica Antonacci's avatar
    Marica Antonacci committed
    
    
    Marica Antonacci's avatar
    Marica Antonacci committed
      - name: Save result to file
        copy:
          dest: "{{ paas_ci_workdir }}/dep.json"
          content: "{{ depshow_output.stdout }}"
    
      - name: Get deployment status and outputs (if successful)
        assert:
          that:
            - deployment.status == 'CREATE_COMPLETE'
          fail_msg: "TEST FAILED -  deployment uuid: {{ deployment.uuid }}, status: {{ deployment.status }}"
          success_msg: "TEST PASSED - deployment uuid: {{ deployment.uuid }}, status: {{ deployment.status }}, outputs: {{ deployment.outputs }}"
    
      when: paas_ci_test_step == 'create_deployment'
    
    - block:
      - set_fact:
          deployment: "{{ lookup('file', paas_ci_workdir + '/dep.json') }}"
      - name:  Delete deployment
        command: orchent depdel "{{ deployment.uuid }}"
        register: depdel_output
        failed_when: "'error' in depdel_output.stdout"
      when: paas_ci_test_step == 'clean'