domain.switch.java.yml
1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
# switch java
- hosts: localhost
vars_prompt:
- name: "confirmation"
prompt: "Start to change . Please Enter YES to continue"
private: no
- name: "switch_to_where"
prompt: "Please choose java endpoint: [qq|aws]"
default: qq
private: no
vars_files:
- extra_vars/all.yml
vars:
qcloud_key: "{{ lookup('hashi_vault', 'secret=yoho/ops/qcloud token='+'{{vault.token}}'+' url='+'{{vault.server}}') }}"
tasks:
- name: "make sure user type YES to confirm"
fail:
msg: "user do not type YES"
when: confirmation != 'YES'
## switch to qq
- name: domain switch to qq
domain_modify:
secretId: "{{ qcloud_key.SecretId }}"
secretKey: "{{ qcloud_key.SecretKey }}"
domain_name: "api.yoho.cn,service.yoho.cn,union.yoho.cn,webunion.yohobuy.com,2.yohobuy.com"
value: "123.206.1.98"
when: switch_to_where == 'qq'
- name: configure ask ip nginx's cloudType = 1
uri:
url: "http://{{item}}/switchCloud?cloudType=1"
headers:
Host: 'dnsresolver.yohoops.org'
with_items: "{{ask_nginx}}"
when: switch_to_where == 'qq'
# switch to aws
- name: switch to aws
domain_modify:
secretId: "{{ qcloud_key.SecretId }}"
secretKey: "{{ qcloud_key.SecretKey }}"
domain_name: "api.yoho.cn,service.yoho.cn,union.yoho.cn,webunion.yohobuy.com,2.yohobuy.com"
value: "java-public-lb-862332839.cn-north-1.elb.amazonaws.com.cn"
when: switch_to_where == 'aws'
- name: configure ask ip nginx's cloudType = 2
uri:
url: "http://{{item}}/switchCloud?cloudType=2"
headers:
Host: 'dnsresolver.yohoops.org'
with_items: "{{ask_nginx}}"
when: switch_to_where == 'aws'