Last active
October 3, 2019 08:11
-
-
Save katarzyna-dusza/e6c038af588da56e22e4b2684057243d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: backend-pod-name # POD_NAME | |
labels: | |
application: backend # LABEL_KEY: LABEL_VALUE | |
spec: | |
containers: # list of containers running in one Pod | |
- name: main-container # CONTAINER_NAME | |
image: my-backend # IMAGE_NAME | |
tag: v1 # IMAGE_TAG | |
ports: | |
- containerPort: 8080 # CONTAINER_PORT_NUMBER - port to expose on the Pod's IP address | |
env: # ENV – environment variable | |
- name: NODE_ENV # ENV_NAME | |
value: prod # ENV_VALUE | |
imagePullPolicy: IfNotPresent # options: Always, Never, IfNotPresent; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment