Created
June 26, 2019 23:25
-
-
Save coryodaniel/9cc8f4a78e71e509d98f0513cf4a3c2a to your computer and use it in GitHub Desktop.
Basic Nginx Pod
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: v1 | |
| kind: Pod | |
| metadata: | |
| name: nginx | |
| labels: | |
| name: nginx | |
| spec: | |
| containers: | |
| - name: nginx | |
| image: nginx | |
| ports: | |
| - containerPort: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment