Du lette etter:

kubectl expose

kubectl-expose man page - kubernetes-client | ManKier
www.mankier.com › 1 › kubectl-expose
kubectl expose [ Options] Description Expose a resource as a new Kubernetes service. Looks up a deployment, service, replica set, replication controller or pod by name and uses the selector for that resource as the selector for a new service on the specified port.
Exposing applications using services | Kubernetes Engine ...
cloud.google.com › kubernetes-engine › docs
Mar 23, 2022 · kubectl expose deployment my-deployment-50001 --name my-lb-service \ --type LoadBalancer --port 60000 --target-port 50001 Cleaning up After completing the exercises on this page, follow these steps to remove resources and prevent unwanted charges incurring on your account:
man kubectl expose (1): Take a replication controller ...
manpages.org › kubectl-expose
kubectl expose [OPTIONS] DESCRIPTION Take a deployment, service, replica set, replication controller, or pod and expose it as a new Kubernetes service. Looks up a deployment, service, replica set, replication controller or pod by name and uses the selector for that resource as the selector for a new service on the specified port.
kubectl-expose man page - kubernetes-client | ManKier
https://www.mankier.com/1/kubectl-expose
kubectl expose [ Options] Description Expose a resource as a new Kubernetes service. Looks up a deployment, service, replica set, replication controller or pod by name and uses the selector for that resource as the selector for a new service on the specified port.
man kubectl expose (1): Take a replication controller ...
https://manpages.org/kubectl-expose
man kubectl expose (1): Take a replication controller, service, or pod and expose it as a new Kubernetes Service SYNOPSIS kubectl expose [OPTIONS] DESCRIPTION Take a deployment, service, replica set, replication controller, or pod and expose it as a new Kubernetes service.
Exposing applications using services | Kubernetes Engine ...
https://cloud.google.com › how-to
As an alternative to writing a Service manifest, you can create a Service by using kubectl expose to expose a Deployment. To expose my-deployment , shown ...
Stateless application » Expose external ip address - Unofficial ...
https://unofficial-kubernetes.readthedocs.io › ...
This page shows how to create a Kubernetes Service object that exposes an external IP address. {% endcapture %}. {% capture prerequisites %}. Install kubectl.
Exposing an External IP Address to Access an Application in a ...
https://kubernetes.io › tutorials › e...
This page shows how to create a Kubernetes Service object that exposes an external IP address. Before you begin Install kubectl.
kubectl - Expose kubernetes dashboard - Stack Overflow
stackoverflow.com › questions › 57726663
kubectl expose deployment kubernetes-dashboard -n kube-system --name kube-dashboard-service2 service/kube-dashboard-service2 exposed Note that default kubernetes-dashboard service is created using ClusterIP type - so you are able right now to access it 1) withing the cluster 2) using kubectl proxy from local machine
2.3.4 Exposing a Service Object for an Application
https://docs.oracle.com › olcne › k...
Use the kubectl expose deployment to create a new service: $ kubectl expose deployment hello-world --port 80 --type= LoadBalancer service/hello-world ...
Kubectl Reference Docs - Kubernetes
https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands
kubectl expose rc streamer --port =4100 --protocol =UDP --name =video-stream Create a service for a replicated nginx using replica set, which serves on port 80 and connects to the containers on port 8000. kubectl expose rs nginx --port =80 --target-port =8000
kubectl expose - Kubernetes
https://jamesdefabia.github.io › docs
Take a replication controller, service, replica set or pod and expose it as a new Kubernetes service. Looks up a replication controller, service, replica set or ...
Kubectl Reference Docs - Kubernetes
kubernetes.io › docs › reference
kubectl expose -f nginx-controller.yaml --port =80 --target-port =8000 Create a service for a pod valid-pod, which serves on port 444 with the name "frontend" kubectl expose pod valid-pod --port =444 --name =frontend Create a second service based on the above service, exposing the container port 8443 as port 443 with the name "nginx-https"
kubectl-expose man page - kubernetes-client | ManKier
https://www.mankier.com › kubect...
Take a replication controller, service, deployment or pod and expose it as a new Kubernetes Service.