diff options
author | Gaƫtan <36162164+gaetanfl@users.noreply.github.com> | 2018-09-21 13:47:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-21 13:47:19 +0200 |
commit | d625a00570b54cd02f64ae6b11922ce9a7acaccf (patch) | |
tree | 10d83c0817dc2131fe7e902cb5426c31a0a5f72a /tasks | |
parent | 4eeb5deae31c0173f46d4a2d2a6835612157ced7 (diff) | |
parent | b8ad037f5793cb7bdb6a4083bac54fcb35934116 (diff) | |
download | ansible-clever-d625a00570b54cd02f64ae6b11922ce9a7acaccf.tar.gz ansible-clever-d625a00570b54cd02f64ae6b11922ce9a7acaccf.tar.zst ansible-clever-d625a00570b54cd02f64ae6b11922ce9a7acaccf.zip |
Merge pull request #11 from gaetanfl/lint
add ansible-lint test and fix warning
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/addon.yml | 1 | ||||
-rw-r--r-- | tasks/deploy.yml | 6 | ||||
-rw-r--r-- | tasks/login.yml | 4 | ||||
-rw-r--r-- | tasks/setup.yml | 1 |
4 files changed, 11 insertions, 1 deletions
diff --git a/tasks/addon.yml b/tasks/addon.yml index f6a4d14..5e7102c 100644 --- a/tasks/addon.yml +++ b/tasks/addon.yml | |||
@@ -2,6 +2,7 @@ | |||
2 | shell: "clever env | grep {{ addon.env_prefix }} | sed -e 's/{{ addon.env_prefix }}_//' -e 's/=/: \"/' -e 's/$/\"/' > {{ clever_app_confdir }}/{{ addon.name }}_env.yml" | 2 | shell: "clever env | grep {{ addon.env_prefix }} | sed -e 's/{{ addon.env_prefix }}_//' -e 's/=/: \"/' -e 's/$/\"/' > {{ clever_app_confdir }}/{{ addon.name }}_env.yml" |
3 | environment: | 3 | environment: |
4 | CONFIGURATION_FILE: "{{ clever_login_file }}" | 4 | CONFIGURATION_FILE: "{{ clever_login_file }}" |
5 | changed_when: False | ||
5 | 6 | ||
6 | - name: Include addon var for {{ addon.name }} | 7 | - name: Include addon var for {{ addon.name }} |
7 | include_vars: | 8 | include_vars: |
diff --git a/tasks/deploy.yml b/tasks/deploy.yml index 54c04ac..5e773b4 100644 --- a/tasks/deploy.yml +++ b/tasks/deploy.yml | |||
@@ -16,13 +16,18 @@ | |||
16 | shell: "clever env import < {{ clever_app_confdir }}/env" | 16 | shell: "clever env import < {{ clever_app_confdir }}/env" |
17 | environment: | 17 | environment: |
18 | CONFIGURATION_FILE: "{{ clever_login_file }}" | 18 | CONFIGURATION_FILE: "{{ clever_login_file }}" |
19 | changed_when: false | ||
19 | 20 | ||
20 | #TODO: Improve ssh-key validation | 21 | #TODO: Improve ssh-key validation |
21 | - name: Accept Clever-Cloud servers | 22 | - name: Accept Clever-Cloud servers |
22 | shell: "ssh-keyscan -H push-par-clevercloud-customers.services.clever-cloud.com >> ~/.ssh/known_hosts" | 23 | shell: "ssh-keyscan -H push-par-clevercloud-customers.services.clever-cloud.com >> ~/.ssh/known_hosts" |
24 | tags: | ||
25 | - skip_ansible_lint | ||
23 | 26 | ||
24 | - name: Push to Clever-Cloud to trigger deployment | 27 | - name: Push to Clever-Cloud to trigger deployment |
25 | command: "git push --force git+ssh://git@push-par-clevercloud-customers.services.clever-cloud.com/{{ clever_app }}.git HEAD:refs/heads/master" | 28 | command: "git push --force git+ssh://git@push-par-clevercloud-customers.services.clever-cloud.com/{{ clever_app }}.git HEAD:refs/heads/master" |
29 | tags: | ||
30 | - skip_ansible_lint | ||
26 | 31 | ||
27 | - name: Watch deployment status | 32 | - name: Watch deployment status |
28 | command: clever-wait-deploy.sh | 33 | command: clever-wait-deploy.sh |
@@ -31,6 +36,7 @@ | |||
31 | register: long_command | 36 | register: long_command |
32 | environment: | 37 | environment: |
33 | CONFIGURATION_FILE: "{{ clever_login_file }}" | 38 | CONFIGURATION_FILE: "{{ clever_login_file }}" |
39 | changed_when: False | ||
34 | 40 | ||
35 | # Waits up to 15 minutes | 41 | # Waits up to 15 minutes |
36 | - name: Wait for deployment completion | 42 | - name: Wait for deployment completion |
diff --git a/tasks/login.yml b/tasks/login.yml index 0eb310f..bed5dbc 100644 --- a/tasks/login.yml +++ b/tasks/login.yml | |||
@@ -10,6 +10,8 @@ | |||
10 | no_log: true | 10 | no_log: true |
11 | 11 | ||
12 | - name: Link app | 12 | - name: Link app |
13 | shell: clever link {{ clever_app }} | 13 | command: clever link {{ clever_app }} |
14 | args: | ||
15 | creates: "{{ clever_app_root }}/.clever.json" | ||
14 | environment: | 16 | environment: |
15 | CONFIGURATION_FILE: "{{ clever_login_file }}" | 17 | CONFIGURATION_FILE: "{{ clever_login_file }}" |
diff --git a/tasks/setup.yml b/tasks/setup.yml index 0dfcddf..f85a635 100644 --- a/tasks/setup.yml +++ b/tasks/setup.yml | |||
@@ -2,6 +2,7 @@ | |||
2 | command: clever --version | 2 | command: clever --version |
3 | register: clever_returned_version | 3 | register: clever_returned_version |
4 | ignore_errors: true | 4 | ignore_errors: true |
5 | changed_when: False | ||
5 | 6 | ||
6 | - name: Ensure user path exists | 7 | - name: Ensure user path exists |
7 | file: | 8 | file: |