Kubernetes Services and Service Discovery
📌 Exposing Kubernetes Workloads using Services
🔹Create a Deployment configuration for the Application named deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: myapp
labels:
app: myapp
spec:
replicas: 3
selector:
ma...
nishantsharma.hashnode.dev3 min read