Skip to content

Commit 4db3db9

Browse files
committed
ansible updates ecs docker
1 parent fdfc21d commit 4db3db9

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

ansible/deploy-ecs-proxies-retag.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,21 @@
1010
account: "{{ lookup('env','account') }}"
1111

1212
pre_tasks:
13+
- name: Show PROXY_VARS_FILE from environment
14+
debug:
15+
msg: "PROXY_VARS_FILE={{ lookup('env','PROXY_VARS_FILE') }}"
16+
1317
- name: include container vars
1418
include_vars:
1519
file: "{{ lookup('env', 'PROXY_VARS_FILE') | expandvars | expanduser | realpath }}"
20+
21+
- name: Debug docker_containers
22+
debug:
23+
var: docker_containers
24+
25+
- name: Debug containers
26+
debug:
27+
var: containers
1628

1729
roles:
1830
- setup-facts

azure/templates/deploy-service.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,8 @@ steps:
194194
- bash: |
195195
set -e
196196
197-
proxy_vars_file="$(PROXY_VARS_FILE)"
197+
proxy_vars_file="${PROXY_VARS_FILE}"
198+
echo "DEBUG: proxy_vars_file='${proxy_vars_file}'"
198199
source $(SERVICE_DIR)/.build_env_vars
199200
200201
export ASSUMED_VERSION=$(echo $SERVICE_ARTIFACT_NAME | grep -E -o "v[0-9]+\.[0-9]+\.[0-9]+-?[a-z]*" || true | tail -1)

0 commit comments

Comments
 (0)