You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are migrating the back-end infrastructure into our new OpenShift cluster. We will need to make some changes for the deployment to succeed.
Acceptance Criteria
Add app-env.json: We need to explicitly define all environment variables that we use in a file called app-env.json for the infrastructure to provide them to our containers. This file should be in the following format:
{
"app_secret": {
"<SECRET_ENVIRONMENT_VARIABLE>": "<DO NOT PUT ACTUAL SECRET VALUES HERE. Provide a hint or leave empty if the environment variable is optional>",
...
},
"app_config":{
"<NON_SECRET_ENVIRONMENT_VARIABLE>": "<Default value or hint. Leave empty if none apply or the environment variable is optional>",
...
}
}
Create port environment variable if none exists. Do not specify port in Dockerfile.
Description
We are migrating the back-end infrastructure into our new OpenShift cluster. We will need to make some changes for the deployment to succeed.
Acceptance Criteria
app-env.json
: We need to explicitly define all environment variables that we use in a file calledapp-env.json
for the infrastructure to provide them to our containers. This file should be in the following format:The text was updated successfully, but these errors were encountered: