Skip to content

Commit aa997be

Browse files
author
Bryan Kendall
committed
remove unnecessary quotes
1 parent 59bbde7 commit aa997be

7 files changed

Lines changed: 26 additions & 26 deletions

File tree

ansible/charon.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
- hosts: docks
66
vars_files:
7-
- "group_vars/alpha-charon.yml"
7+
- group_vars/alpha-charon.yml
88
roles:
9-
- { role: notify, tags: "notify" }
10-
- { role: git_node_service, tags: "deploy" }
9+
- { role: notify, tags: [notify] }
10+
- { role: git_node_service, tags: [deploy] }
1111
- { role: consul_value, tags: [deploy, consul_value] }

ansible/filibuster.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
- hosts: docks
55
vars_files:
6-
- "group_vars/alpha-filibuster.yml"
6+
- group_vars/alpha-filibuster.yml
77
roles:
8-
- { role: notify, tags: "notify" }
9-
- { role: git_node_service, tags: "deploy" }
8+
- { role: notify, tags: [notify] }
9+
- { role: git_node_service, tags: [deploy] }
1010
- { role: consul_value, tags: [deploy, consul_value] }

ansible/group_vars/all.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# registry settings
3-
registry_env: "prod"
3+
registry_env: prod
44
registry_port: 80
55

66
# for docker stop old container
@@ -15,8 +15,8 @@ container_run_args: ""
1515
# REPO_BASE for getting dockerfiles
1616
repo_base: "{{ lookup('env','REPO_BASE') }}"
1717

18-
dockerfile: "basic_node/Dockerfile"
19-
base_dockerfile: "node_base"
18+
dockerfile: basic_node/Dockerfile
19+
base_dockerfile: node_base
2020

2121
docker_config: runnable
2222

@@ -53,7 +53,7 @@ datadog_port: 8125
5353
# detention
5454
detention_host_address: "{{ hostvars[groups['detention'][0]]['ansible_default_ipv4']['address'] }}"
5555
detention_port: 9123
56-
detention_hostname: "detention.{{ domain }}"
56+
detention_hostname: detention.{{ domain }}
5757

5858
# docker
5959
docker_ca_path: /etc/ssl/docker/ca.pem
@@ -63,10 +63,10 @@ docker_port: 4242
6363

6464
# eru
6565
eru_port: 57831
66-
eru_hostname: "admin.{{ domain }}"
66+
eru_hostname: admin.{{ domain }}
6767

6868
# mavis
69-
mavis_hostname: "mavis.{{ domain }}"
69+
mavis_hostname: mavis.{{ domain }}
7070
mavis_port: 3000
7171

7272
# metis
@@ -95,7 +95,7 @@ redis_host_address: "{{ hostvars[groups['redis'][0]]['ansible_default_ipv4']['ad
9595
redis_port: 6379
9696

9797
# sauron
98-
weave_path: "/usr/local/bin/weave"
98+
weave_path: /usr/local/bin/weave
9999

100100
# shiva
101101
pg_user: shiva

ansible/group_vars/alpha-filibuster.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ filibuster_env: default
33
name: filibuster
44

55
# upstart template variables
6-
app_name: "filibuster"
7-
app_repo: "git@github.com:Runnable/Filibuster.git"
6+
app_name: filibuster
7+
app_repo: git@github.com:Runnable/Filibuster.git
88
node_env: "{{ filibuster_env }}"
99

1010
enviroment_vars: {}

ansible/image-builder.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
- hosts: docks
55
vars_files:
6-
- "group_vars/alpha-image-builder.yml"
6+
- group_vars/alpha-image-builder.yml
77
roles:
8-
- { role: notify, tags: "notify" }
9-
- { role: node, tags: "setup" }
10-
- { role: image-builder, tags: "deploy" }
8+
- { role: notify, tags: [notify] }
9+
- { role: node, tags: [setup] }
10+
- { role: image-builder, tags: [deploy] }
1111
- { role: consul_value, tags: [deploy, consul_value] }

ansible/krain.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
- hosts: docks
55
vars_files:
6-
- "group_vars/alpha-krain.yml"
6+
- group_vars/alpha-krain.yml
77
roles:
8-
- { role: notify, tags: "notify" }
8+
- { role: notify, tags: [notify] }
99
- { role: build_essential }
10-
- { role: git_node_service, tags: "deploy" }
10+
- { role: git_node_service, tags: [deploy] }
1111
- { role: consul_value, tags: [deploy, consul_value] }

ansible/sauron.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
- hosts: docks
77
vars_files:
8-
- "group_vars/alpha-sauron.yml"
8+
- group_vars/alpha-sauron.yml
99
roles:
10-
- { role: notify, tags: "notify" }
11-
- { role: sauron, tags: "notify" }
12-
- { role: git_node_service, tags: "deploy" }
10+
- { role: notify, tags: [notify] }
11+
- { role: sauron, tags: [notify] }
12+
- { role: git_node_service, tags: [deploy] }
1313
- { role: consul_value, tags: [deploy, consul_value] }

0 commit comments

Comments
 (0)