Created
December 14, 2019 04:37
-
-
Save pandeybk/a6f1e7bcd248545e72de16a85459fe46 to your computer and use it in GitHub Desktop.
managed-certificate-deployment
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: | |
labels: | |
run: gke-goglides | |
name: hello-world | |
spec: | |
selector: | |
matchLabels: | |
run: gke-goglides | |
replicas: 1 | |
template: | |
metadata: | |
labels: | |
run: gke-goglides | |
spec: | |
containers: | |
- name: hello-world | |
image: nginx:1.15.8 | |
ports: | |
- containerPort: 80 | |
protocol: TCP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment