You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Serving Layer sollte den Standard Service ClusterIP (und nicht LoadBalancer) nutzen. LoadBalancer ist für externe Services, die von außerhalb des Clusters angesprochen werden. Wenn kein spezial Type genannt wird, ists automatisch Cluster-IP. Auch Cluster-IP routet den Traffic zu den verschiedenen Instanzen.
Kubernetes ServiceTypes allow you to specify what kind of Service you want. The default is ClusterIP.
Type values and their behaviors are:
ClusterIP: Exposes the Service on a cluster-internal IP. Choosing this value makes the Service only reachable from within the cluster. This is the default ServiceType. NodePort: Exposes the Service on each Node's IP at a static port (the NodePort). A ClusterIP Service, to which the NodePort Service routes, is automatically created. You'll be able to contact the NodePort Service, from outside the cluster, by requesting :. LoadBalancer: Exposes the Service externally using a cloud provider's load balancer. NodePort and ClusterIP Services, to which the external load balancer routes, are automatically created.
The text was updated successfully, but these errors were encountered:
Serving Layer sollte den Standard Service ClusterIP (und nicht LoadBalancer) nutzen. LoadBalancer ist für externe Services, die von außerhalb des Clusters angesprochen werden. Wenn kein spezial Type genannt wird, ists automatisch Cluster-IP. Auch Cluster-IP routet den Traffic zu den verschiedenen Instanzen.
Änderung im Deployment des serving-layer wäre :
aus der Doku
The text was updated successfully, but these errors were encountered: