Skip to content

Commit 40c3130

Browse files
Merge pull request #494 from NHSDigital/master
MergeMasterToEdge
2 parents 1993972 + f09cb09 commit 40c3130

File tree

4 files changed

+853
-678
lines changed

4 files changed

+853
-678
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ on: push
55
jobs:
66
build:
77
name: calculate version
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-22.04
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.8
16-
uses: actions/setup-python@v1
15+
- name: Install Python 3.9
16+
uses: actions/setup-python@v5
1717
with:
18-
python-version: 3.8
18+
python-version: 3.9
1919

2020
- name: Install poetry
2121
run: pip install poetry

ansible/roles/deploy-ecs-proxies/vars/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ workspace: "api-deployment:{{ account }}:{{ apigee_environment }}:{{ service_id
99
service_cpu: "{{ docker_service_cpu | default(256) }}"
1010
service_memory: "{{ docker_service_memory | default(512) }}"
1111
do_not_terraform: "{{ lookup('env','do_not_terraform') }}"
12-
default_desired_capacity: "{{ 2 if apigee_environment in ('prod', 'ref') else 1 }}"
12+
default_desired_capacity: "{{ docker_service_desired_capacity | 2 if apigee_environment in ('prod', 'ref') else 1 }}"
1313
autoscaling_policy: "{{ docker_service_autoscaling | default({}) | as_ecs_autoscaling }}"
1414
health_check_grace_period_seconds: "{{ docker_service_health_check_grace_period_seconds | default(60) }}"
1515
deregistration_delay: "{{ docker_service_dereg_delay | default(120) }}"

0 commit comments

Comments
 (0)