Created
May 20, 2020 04:30
-
-
Save vamsijakkula/217b75ff3576b88b06313ee58597050b to your computer and use it in GitHub Desktop.
hello-whale-blue
This file contains hidden or 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: apps/v1 | |
kind: Deployment | |
metadata: | |
name: hello-whale-blue | |
spec: | |
replicas: 5 | |
selector: | |
matchLabels: | |
app: hello-whale-app | |
template: | |
metadata: | |
name: hello-blue-whale-pod | |
labels: | |
app: hello-whale-app | |
version: blue | |
spec: | |
containers: | |
- name: hello-whale-container | |
image: vamsijakkula/hello-blue-whale:v1 | |
imagePullPolicy: Always | |
ports: | |
- containerPort: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment