Deploying Applications to Permanent Nonproduction Environments
Explore deploying applications to permanent nonproduction environments such as staging using Helm and Kubernetes. Understand namespace creation, setting environment-specific values, managing replicas with HPA, and confirming persistent volume attachments to ensure robust deployment aligned with environment needs.
We'll cover the following...
Background
We’ve already learned everything we need to know about deploying an application to a permanent nonproduction environment such as staging. It’s similar to deploying it to a development environment. As a matter of fact, it should be even easier because it’s permanent, so there shouldn’t be any dynamic values involved. All we have to do is define another set of values.
With that in mind, we could just skip this part. But we won’t, mostly so we can close the circle and go through all the commonly used permutations. So think of this section as a refresher.
Creating namespaces
We’ll start by creating the ...