...

/

Passing an Environment Variable to Our Container

Passing an Environment Variable to Our Container

Learn how to pass an environment variable to a container.

We'll cover the following...

Creating a new version

Let’s first create a Service and Deployment for the new version of our application to make sure everything is working fine:

Press + to interact
apiVersion: v1
kind: Service
metadata:
name: hellok8s-svc
spec:
type: NodePort
selector:
app: hellok8s
ports:
- port: 4567
nodePort: 30001
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: hellok8s
spec:
replicas: 2
selector:
matchLabels:
app: hellok8s
template:
metadata:
labels:
app: hellok8s
spec:
containers:
- image: brianstorti/hellok8s:v4
name: hellok8s-container

Apply this ...