Kubernetes Test Ymls / Service

TrackKubernetes Learning Journey
Current SectionDeployments
Progress62 of 271
apiVersion: v1
kind: Service
metadata:
  name: nginx-service
spec:
  selector:
    app: nginx
  type: NodePort
  ports:
    - port: 80
      targetPort: 80