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: v1kind: Servicemetadata:name: hellok8s-svcspec:type: NodePortselector:app: hellok8sports:- port: 4567nodePort: 30001---apiVersion: apps/v1kind: Deploymentmetadata:name: hellok8sspec:replicas: 2selector:matchLabels:app: hellok8stemplate:metadata:labels:app: hellok8sspec:containers:- image: brianstorti/hellok8s:v4name: hellok8s-container
Apply this ...