Difference between revisions of "Kubectl expose"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Line 9: Line 9:
 
  kubectl expose rc nginx --port=80 --target-port=8000
 
  kubectl expose rc nginx --port=80 --target-port=8000
 
  https://kubernetes.io/docs/reference/kubectl/cheatsheet/#updating-resources
 
  https://kubernetes.io/docs/reference/kubectl/cheatsheet/#updating-resources
 +
 +
[[kubectl expose deployment]] your-deployment-name --type=LoadBalancer --name=my-service
 +
service/my-service exposed
  
 
== Related ==
 
== Related ==

Revision as of 19:20, 27 March 2023

kubectl expose take a replication controller, service, replica set or pod and expose it as a new Kubernetes Service

kubectl expose deployment nginxapp --name=nginxclusterip --port=80 --target-port=8080

kubectl expose pod check-ip --name check-ip-service --port 80
kubectl expose rc nginx --port=80 --target-port=8000
https://kubernetes.io/docs/reference/kubectl/cheatsheet/#updating-resources
kubectl expose deployment your-deployment-name --type=LoadBalancer --name=my-service
service/my-service exposed

Related

See also

Advertising: