File tree Expand file tree Collapse file tree 4 files changed +678
-853
lines changed
ansible/roles/deploy-ecs-proxies/vars Expand file tree Collapse file tree 4 files changed +678
-853
lines changed Original file line number Diff line number Diff line change @@ -5,17 +5,17 @@ on: push
55jobs :
66 build :
77 name : calculate version
8- runs-on : ubuntu-22.04
8+ runs-on : ubuntu-latest
99 steps :
1010 - name : Checkout
1111 uses : actions/checkout@v2
1212 with :
1313 fetch-depth : 0 # This causes all history to be fetched, which is required for calculate-version to function
1414
15- - name : Install Python 3.9
16- uses : actions/setup-python@v5
15+ - name : Install Python 3.8
16+ uses : actions/setup-python@v1
1717 with :
18- python-version : 3.9
18+ python-version : 3.8
1919
2020 - name : Install poetry
2121 run : pip install poetry
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ workspace: "api-deployment:{{ account }}:{{ apigee_environment }}:{{ service_id
99service_cpu : " {{ docker_service_cpu | default(256) }}"
1010service_memory : " {{ docker_service_memory | default(512) }}"
1111do_not_terraform : " {{ lookup('env','do_not_terraform') }}"
12- default_desired_capacity : " {{ docker_service_desired_capacity | 2 if apigee_environment in ('prod', 'ref') else 1 }}"
12+ default_desired_capacity : " {{ 2 if apigee_environment in ('prod', 'ref') else 1 }}"
1313autoscaling_policy : " {{ docker_service_autoscaling | default({}) | as_ecs_autoscaling }}"
1414health_check_grace_period_seconds : " {{ docker_service_health_check_grace_period_seconds | default(60) }}"
1515deregistration_delay : " {{ docker_service_dereg_delay | default(120) }}"
You can’t perform that action at this time.
0 commit comments