Difference between revisions of "Kubectl expose deployment"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Line 23: Line 23:
 
== Related ==
 
== Related ==
 
* [[DNS-1035]]
 
* [[DNS-1035]]
 +
* [[kind: Ingress]]
  
 
== See also ==
 
== See also ==

Revision as of 13:26, 6 February 2024

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


kubectl expose deployment kubernetes-dashboard -n kube-system --type=NodePort


Create a external LB, in AWS AWS LB, to provide external access to your application:

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

Verify:

kubectl get services my-service
NAME                   TYPE        CLUSTER-IP       EXTERNAL-IP   PORT(S)   AGE
my-service    ClusterIP   172.20.251.125   <none>        80/TCP    3d5h
if EXTERNAL-IP address is not assigned verify that aws-load-balancer-controller is installed. 

Activities

Related

See also

  • https://kubernetes.io/docs/tutorials/stateless-application/expose-external-ip-address/
  • Advertising: