service

PHOTO EMBED

Tue Jan 09 2024 06:42:32 GMT+0000 (Coordinated Universal Time)

Saved by @ishwarshinde041 #html

apiVersion: v1
# Indicates this as a service
kind: Service
metadata:
  # Service name
  name: reddit-clone-service
spec:
  selector:
    # Selector for Pods
    app: reddit-clone
  ports:
    # Port Map
  - port: 3000
    targetPort: 3000
    protocol: TCP
  type: LoadBalancer
content_copyCOPY