About 9,300,000 results
Open links in new tab
  1. kubernetes - Container port pods vs container port service - Stack …

    A Kubernetes Service is an abstraction which defines a logical set of Pods and a policy by which to access them - sometimes called a micro-service. The set of Pods targeted by a Service is …

  2. What exactly Kubernetes Services are and how they are different …

    Jul 5, 2019 · Service A deployment consists of one or more pods and replicas of pods. Let's say, we have 3 replicas of pods running in a deployment. Now let's assume there is no service. …

  3. How to expose a Kubernetes service on a specific Nodeport?

    9 When an existing Dashboard service already exists, remove it. kubectl delete service kubernetes-dashboard -n kube-system Expose the Dashboard deployment as a NodePort. …

  4. What is the difference between Istio VirtualService and Kubernetes …

    Dec 12, 2018 · Kubernetes service Kubernetes service manage a pod's networking. It specifies whether your pods are exposed internally (ClusterIP), externally (NodePort or LoadBalancer) …

  5. kubernetes - Is there a command to check which pods have a …

    Jun 30, 2020 · Is there a way to check on which pods the service has been applied? I want that using the above service, I connect to a cluster in Google Cloud running Kubernetes/Cassandra …

  6. nginx - Kubernetes service external ip pending - Stack Overflow

    May 22, 2017 · kind: Service apiVersion: v1 metadata: name: nginx-ils-service spec: ports: - name: http port: 80 nodePort: 30062 selector: app: nginx type: LoadBalancer this service is …

  7. Difference between targetPort and port in Kubernetes Service …

    Apr 23, 2018 · Since people have explained port and targetPort in Kubernetes Service definition, I'll add information on how Dockerfile, Kubernetes Deployment and Kubernetes Ingress come …

  8. Kubernetes: create service vs expose deployment - Stack Overflow

    Dec 18, 2019 · 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 …

  9. How to find the url of a service in kubernetes? - Stack Overflow

    Jan 2, 2020 · Get the service name: kubectl get service -n test URL to a kubernetes service is service-name.namespace.svc.cluster.local:service-port where cluster.local is the kubernetes …

  10. kubernetes - What is the difference between service-cidr, and …

    Aug 17, 2023 · Here they are referring to basically the service-cidr input of the AKS resource. Long story short what I understood, service-cidr and service-cluster-ip-range are the same in …