kubectl create clusterip
Jump to navigation
Jump to search
kubectl create service clusterip
apiVersion: v1 kind: Service metadata: name: my-service spec: selector: app.kubernetes.io/name: MyApp ports: - protocol: TCP port: 80 targetPort: 9376
- https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#-em-service-clusterip-em-
- https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
ClusterIP
(default ServiceType): exposes the Service on a cluster internal IP then your service is only reachable from within the cluster.
See also
Advertising: