config
Configuring your application, Part 2
· โ˜• 4 min read · โœ๏ธ jorgemoralespou
In a real world, your applications will be transitioning from environment to environment, from development to testing and into production, as part of their lifecycle. In a container world, applications are assembled into one or many container images, hence what will be promoted are images. In this blog I will demonstrate the concepts we learnt about externalizing configuration in your image promotion scenarios. As Veer has previously showed, OpenShift is a platform where we can easily model the concept of stages/environments per application, and we can promote an application (image) from environment to environment just by tagging it accordingly in the project.

Configuring your application, Part 1
· โ˜• 5 min read · โœ๏ธ jorgemoralespou
Kubernetes 1.2, released more than a month ago, has brought many interesting additions to the Kubernetes platform, but thereโ€™s one, that relates to configuration management, thatโ€™s especially relevant for application developers, this is ConfigMap. In this blog entry I will share some experiences and tips on using ConfigMap that goes beyond what one of our engineers and Kubernetes contributor, Paul Morie, recently blogged about it. We will take advantage of this new feature in a real application that we will be promoting through different environments, from development through testing into production.