Skip to content

Commit b66ad9c

Browse files
committed
Updated pydantic regex pattern and ansbile pull task
1 parent d2c8990 commit b66ad9c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ansible/collections/ansible_collections/nhsd/apigee/plugins/module_utils/models/apigee/rate_limiting_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class QuotaConfig(ExcludeNoneModel):
3838

3939
class SpikeArrestConfig(ExcludeNoneModel):
4040
enabled: bool = None
41-
ratelimit: constr(regex=r"^[1-9][0-9]*(ps|pm)$") = None
41+
ratelimit: constr(pattern=r"^[1-9][0-9]*(ps|pm)$") = None
4242

4343

4444
class RateLimitingConfig(ExcludeNoneModel):

ansible/roles/build-ecs-proxies/tasks/build-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
- name: pull latest if exists - to ensure cache {{ item }}
1313
ansible.builtin.command:
14-
cmd: "docker pull {{ ecr_registry }}/{{ item }}:{{ describe_images.stdout }}"
14+
cmd: "docker pull {{ ecr_registry }}/{{ service_id }}_{{ item }}:{{ describe_images.stdout }}"
1515
when: describe_images.stdout != 'None'
1616
ignore_errors: true
1717
no_log: true

0 commit comments

Comments
 (0)