k8s_notes-wiki/notes-wiki_service.yml

15 lines
207 B
YAML

---
apiVersion: v1
kind: Service
metadata:
name: notes-wiki
spec:
ports:
- name: http8080
port: 8080
selector:
# apply service to any pod with label app: nginx
app: notes-wiki
# EOF