Kubectl expose: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(One intermediate revision by the same user not shown)
Line 5: Line 5:
=Overview=
=Overview=


<tt>expose</tt> dynamically exposes a resource (pod,  service, replicationcontroller, deployment, replicaset) as a new service. The default service type is ClusterIP, other type (NodePort, LoadBalancer, or ExternalName) can be specified with --type.
<tt>expose</tt> dynamically exposes a resource (pod,  service, replicationcontroller, deployment, replicaset) as a new service. The default service type is [[Kubernetes_Service_Concepts#ClusterIP|ClusterIP]], other type ([[Kubernetes_Service_Concepts#NodePort|NodePort]], [[Kubernetes_Service_Concepts#LoadBalancer|LoadBalancer]], or [[Kubernetes_Service_Concepts#ExternalName|ExternalName]]) can be specified with --type.


  kubectl expose pod pg-0 --port=5432 --name=postgres --type=NodePort
  kubectl expose pod pg-0 --port=5432 --name=postgres --type=NodePort

Revision as of 23:09, 13 August 2019

Internal

Overview

expose dynamically exposes a resource (pod, service, replicationcontroller, deployment, replicaset) as a new service. The default service type is ClusterIP, other type (NodePort, LoadBalancer, or ExternalName) can be specified with --type.

kubectl expose pod pg-0 --port=5432 --name=postgres --type=NodePort