Kubernetes services code example

Example 1: kubernetes get services

# Get pods in default namespace
kubectl get services

#Get Pods in my-namespace
kubectl get services -n my-namespace

#Get Pods in all namespaces
kubectl get services --all-namespaces

Example 2: k8s service example

apiVersion: v1
kind: Service
metadata:
  name: my-service
spec:
  selector:
    app: MyApp
  ports:
    - protocol: TCP
      port: 80
      targetPort: 9376

Example 3: how to expose external ip in kubernetes

kubectl expose deployment hello-world --type=LoadBalancer --name=my-service

Tags: