Skip to content

Commit 262da30

Browse files
committed
Merge branch 'master' of github.com:CodeNow/devops-scripts into SAN-3343-Install-Config-NTP
2 parents 6c60556 + ff3f02b commit 262da30

21 files changed

Lines changed: 92 additions & 45 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,4 @@ It is the custom at Runnable to play a song to the entire team when deploying. F
109109

110110
[Link: Zelda Main Theme Song](https://www.youtube.com/watch?v=cGufy1PAeTU)
111111

112-
**IMPORTANT:** Make sure the play the song loud and proud when deploying!
112+
**IMPORTANT:** Make sure to play the song loud and proud when deploying!

ansible/charon.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
roles:
99
- { role: notify, tags: [notify] }
1010
- { role: git_node_service, tags: [deploy] }
11+
- { role: loggly-rotate }
1112
- { role: consul_value, tags: [deploy, consul_value] }

ansible/delta-hosts/variables

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@ vault_aws_region=us-east-1
6060
[delta:vars]
6161
ansible_ssh_private_key_file=~/.ssh/delta.pem
6262
api_hello_runnable_github_token=88ddc423c2312d02a8bbcaad76dd4c374a30e4af
63-
datadog_host_address=10.8.5.63
6463
datadog_tags=env:delta
64+
datadog_mongodb_user=datadog
65+
datadog_mongodb_pwd=sqa3WBgkCgZsFZuex0kBNahZ
6566
domain=runnable.io
6667
mongo_port=27017
6768
new_relic_license_key=338516e0826451c297d44dc60aeaf0a0ca4bfead

ansible/gamma-hosts/variables

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ vault_aws_region=us-east-1
5959

6060
[gamma:vars]
6161
ansible_ssh_private_key_file=~/.ssh/gamma.pem
62-
datadog_host_address=10.4.6.251
6362
datadog_tags=env:gamma
6463
datadog_mongodb_user=datadog
6564
datadog_mongodb_pwd=sqa3WBgkCgZsFZuex0kBNahZ
@@ -75,7 +74,6 @@ registry_host=10.4.4.82
7574
swarm_token=d363b783f03a845a2c82b081bfe8443e
7675
user_content_domain=runnable.ninja
7776
api_hello_runnable_github_token=88ddc423c2312d02a8bbcaad76dd4c374a30e4af
78-
no_dd_monitoring=false
7977

8078
[ec2:vars]
8179
env=gamma

ansible/group_vars/alpha-charon.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ enviroment_vars:
1717
consul_values:
1818
- key: "{{ name }}/version"
1919
value: "{{ git_branch }}"
20+
- key: api/url
21+
value: "{{ api_url }}"

ansible/group_vars/alpha-consul.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,5 @@ consul_seed:
4444
value: "{{ node_env }}"
4545
- key: api/hostname
4646
value: "{{ api_hostname }}"
47+
- key: api/url
48+
value: "{{ api_url }}"

ansible/group_vars/alpha-mongo.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ container_run_opts: "-d --name mongodb -p 27017:27017 -v {{ db_path }}:/data/db:
1010

1111
# do not monitor docker-daemon for mongo, as there is none
1212
no_dd_monitoring: true
13+
has_dd_integration: true

ansible/group_vars/alpha-rabbitmq.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ container_tag: "3.5.3-management"
1010
container_run_opts: "-d --name prod-rabbit -v {{ db_path }}:/var/lib/rabbitmq:rw -v {{ config_path }}/rabbitmq.config:/etc/rabbitmq/rabbitmq.config:ro -p 54320:15672 -p 54321:5672"
1111

1212
hosted_ports: [ 5672, 15672 ]
13-
# monitor the docker-daemon
14-
no_dd_monitoring: false
13+
# DD integration for RabbitMQ
14+
has_dd_integration: true

ansible/group_vars/alpha-sauron.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ container_envs: >
2929
-e RABBITMQ_PASSWORD="{{ rabbit_password }}"
3030
-e RABBITMQ_PORT="{{ rabbit_port }}"
3131
-e RABBITMQ_USERNAME="{{ rabbit_username }}"
32+
-e SWARM_HOSTNAME={{ swarm_host_address }}
33+
-e SWARM_PORT={{ swarm_master_port }}
3234
-e WEAVE_PATH={{ weave_path }}
3335
3436
container_run_opts: >
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
- name: update cache for apt repository
3+
sudo: yes
4+
apt:
5+
update_cache=yes

0 commit comments

Comments
 (0)