Commit 6fa3f82a by Diego Lima

Initial commit

1 parent c160dc7b
apiVersion: v1
kind: Pod
metadata:
name: nginx
namespace: treinamento-k8s
labels:
role: webserver
spec:
containers:
- name: web
image: nginx
ports:
- name: web
containerPort: 80
protocol: TCP
\ No newline at end of file
FROM nginx:latest
COPY index.html /usr/share/nginx/html/index.html
\ No newline at end of file
Oi
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!