This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ARG LUCEE_TAG | |
FROM lucee/lucee:$LUCEE_TAG | |
RUN echo 'p' > /opt/lucee/server/lucee-server/context/password.txt | |
ENV LUCEE_EXTENSIONS ${LUCEE_EXTENSIONS},5C558CC6-1E67-4776-96A60F9726D580F1;name=Ortus Redis Cache;version=3.0.0.41 | |
RUN prewarm.sh |
This will serve to document various timeouts, what they're used for, and project-specific decisions as to their use/values.
In order to manage long running processes gracefully, we want to control when a request will be killed in different scenarios. The following table documents the different layers of the application stack and their associated timeout values.
| Step | Technology | Timeout | Notes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine as builder | |
RUN apk add curl | |
RUN mkdir -p /opt/fusionreactor /opt/fusionreactor/conf \ | |
&& cd /opt/fusionreactor \ | |
&& curl -O https://download.fusionreactor.io/FR/FusionReactor-9.2.2/fusionreactor.jar \ | |
&& curl -O https://download.fusionreactor.io/FR/FusionReactor-9.2.2/libfrjvmti_x64.so | |
FROM scratch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration | |
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/ | |
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh | |
10-listen-on-ipv6-by-default.sh: info: IPv6 listen already enabled | |
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh | |
setting 'cloudfront_access_token' var | |
${HOSTNAME} ${HOME} ${PKG_RELEASE} ${cloudfront_access_token} ${NGINX_VERSION} ${PATH} ${NJS_VERSION} ${PWD} | |
/docker-entrypoint.d/20-envsubst-on-templates.sh: 37: 3: Bad file descriptor | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
thread name="createObjectThread" { | |
thread.hello = "foo"; | |
sleep(40); | |
} | |
keepLooping = true; | |
loopTimeout = 20; // (ms) | |
while (keepLooping) { | |
if (createObjectThread.elapsedTime > loopTimeout) { |
I believe this applies to other resource/block types, but once you add a sensitive value to any aws_cloudfront_distribution
's origin
blocks. Changes to any aws_cloudfront_distribution
's origin
block will be masked in terraform plan
output.
This hides important diff information from me.
Steps to reproduce:
- Spin up a CloudFront distribution using these tf files, in their stock state.
- Make a change to the
origin_b_nonsensitive
origin; e.g., change itsorigin_read_timeout
to 59 terraform plan
will show you the diff. Hooray! Happy day!- Use line 3 instead of line 2 to use a sensitive value (which gets used by
origin_a_sensitive
)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipelineJob("E2E Tests ${JOB_NAME_SUFFIX}") { | |
description("") | |
keepDependencies(false) | |
parameters { | |
wHideParameterDefinition { | |
name('AGENT') | |
defaultValue("${AGENT}") | |
description('Node on which to run.') | |
} | |
wHideParameterDefinition { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipelineJob("E2E Tests ${JOB_NAME_SUFFIX}") { | |
description("") | |
keepDependencies(false) | |
parameters { | |
wHideParameterDefinition { | |
name('AGENT') | |
defaultValue("${AGENT}") | |
description('Node on which to run.') | |
} | |
wHideParameterDefinition { |
NewerOlder