April 2018
Intermediate to advanced
374 pages
8h 35m
English
This example builds on our earlier Python/Flask example. This extension will add a ConfigMap that uses both environment variables and structured files, as well as code updates to consume and use those values.
To start, add a ConfigMap with both top-level values and a deeper configuration. The top values will be exposed as environment variables, and the multiline YAML will be exposed as a file inside the container:
# CONFIGURATION FOR THE FLASK APPkind: ConfigMapapiVersion: v1metadata: name: flask-configdata: CONFIG_FILE: “/etc/flask-config/feature.flags“ feature.flags: | [features] greeting=hello debug=true
This ConfigMap is mapped with updates to the Pod specification of the deployment with ...
Read now
Unlock full access