MOTOSHARE ššļø
Turning Idle Vehicles into Shared Rides & Earnings
From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.
With Motoshare, every parked vehicle finds a purpose.
Owners earn. Renters ride.
š Everyone wins.
What is a Service?
- An abstract way to expose an application running on a set ofĀ PodsĀ as a network service.
- With Kubernetes you don’t need to modify your application to use an unfamiliar service discovery mechanism. Kubernetes gives Pods their own IP addresses and a single DNS name for a set of Pods, and can load-balance across them.
What is the types Services?
- 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 Service Type
- NodePort: Exposes the service on each Nodeās IP at a static port (the NodePort)
- LoadBalancer : Exposes the service externally using a cloud providerās load balance
- EternalName :which will redirect a request to a domain specified in itsĀ
external NameĀ parameter:
What is the use of service named with “kubernetes” in default namespace?
- it is aĀ serviceĀ which forwards requests to theĀ KubernetesĀ master .
- So all the requests to the kubernetes.default service from the cluster will be routed to the configured Endpoint IP.