Programmatically update an environment variable in a DeploymentConfig
A DeploymentConfig in OpenShift is a REST object that defines the template for a pod and manages deploying new images or configuration changes. It can be POSTed to the API server to create a new instance. A single deployment configuration is usually analogous to a single micro-service. A DeploymentConfig (DC) in OpenShift is more or less equivalent to a Kubernetes Deployment. The main difference is that there are a few things you can do with a DeploymentConfig (around triggers) that you can’t do with a Deployment....