Skip to content

Commit 54a33ef

Browse files
authored
Merge branch 'fp/headline-test-rollout-stage-one' into fp/headline-test-rollout-stage-two
2 parents 7fa91e2 + 3539483 commit 54a33ef

13 files changed

Lines changed: 1991 additions & 112 deletions

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ services:
4444
# The log output is the DCR response, so we can also pipe it through `jq` to pretty-print it, e.g.:
4545
# docker logs "$(docker ps -aq --filter "name=sample-request" --latest)" | jq .
4646
sample-request:
47-
image: curlimages/curl:8.21.0
47+
image: curlimages/curl:8.22.0
4848
depends_on:
4949
tag-page-rendering:
5050
condition: service_healthy

dotcom-rendering/cdk/bin/cdk.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ new RenderingCDKStack(
112112
TagPageRenderingPropsCODE,
113113
);
114114

115-
new RenderingCDKStack(cdkApp, 'TagPageRendering-PROD', {
115+
export const TagPageRenderingPropsPROD: RenderingCDKStackProps = {
116116
guApp: 'tag-page-rendering',
117117
stage: 'PROD',
118118
domainName: 'tag-page-rendering.guardianapis.com',
@@ -142,7 +142,13 @@ new RenderingCDKStack(cdkApp, 'TagPageRendering-PROD', {
142142
},
143143
},
144144
instanceType: InstanceType.of(InstanceClass.C8G, InstanceSize.MEDIUM),
145-
});
145+
};
146+
147+
new RenderingCDKStack(
148+
cdkApp,
149+
'TagPageRendering-PROD',
150+
TagPageRenderingPropsPROD,
151+
);
146152

147153
/** Interactive */
148154
new RenderingCDKStack(cdkApp, 'InteractiveRendering-CODE', {

0 commit comments

Comments
 (0)