Day 34 : Working with Services in Kubernetes
Task 1 ) Create a Service for your todo-app Deployment
we need to create service.yml as below
apiVersion: v1
kind: Service
metadata:
name: my-service
namespace: my-namespace
spec:
selector:
app: node-app
ports:
- protocol: TCP
p...
ajayblog.com2 min read