Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _infra/helm/frontstage/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 2.5.87
version: 2.5.88

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 2.5.87
appVersion: 2.5.88
2 changes: 2 additions & 0 deletions _infra/helm/frontstage/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ spec:
successThreshold: 1
timeoutSeconds: 5
env:
- name: LOGGING_LEVEL
value : "{{ .Values.logging.level }}"
- name: APP_SETTINGS
value: {{ .Values.config }}
- name: ACCOUNT_SERVICE_URL
Expand Down
3 changes: 3 additions & 0 deletions _infra/helm/frontstage/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,6 @@ profiler:

secureMessage:
version: both

logging:
level: DEBUG
2 changes: 2 additions & 0 deletions frontstage/create_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ def create_app_object():
logger = wrap_logger(logging.getLogger(__name__))
logger.debug("App configuration set", config=app_config)

logger.debug("Test message for deployment purposes")

# If any required variables are not set abort launch
for var in app.config["NON_DEFAULT_VARIABLES"]:
if not app.config[var]:
Expand Down
Loading