2 Eylül 2022 Cuma

minikube ip seçeneği - Docker Driver ile Çalışmaz. Uygulamaya Erişim İçindir

Giriş
Örnek
Şöyle yaparız
$ minikube ip
IP adresini öğrendikten sonra şöyle yaparız. 
http://192.168.49.2:31000
adresine giderek minikube içinde çalışan bir uygulamaya erişebiliriz. Burada uygulamamızın 31000 adresini dinlediğini varsaydık.

Ancak Docker Driver kullanıyorsak açıklaması şöyle
It may happen if you are using the docker driver while starting the minikube , instead of the virtual box. In this situation minikube IP will not function and you will be required to start the local tunnel from your terminal using the following commands,
$ minikube service jenkins --url
Örnek
Şöyle yaparız. Burada minikube ip adsresini öğrendik. Daha sonra servisimizin kullandığı portu öğrendik.
> minikube ip
172.20.164.53

> kubectl get service app-users
NAME        TYPE           CLUSTER-IP       EXTERNAL-IP   PORT(S)          AGE
app-users   LoadBalancer   10.104.184.147   <pending>     8080:31434/TCP   24h
Şöyle yaparız
http://172.20.164.53:31434/users/


Hiç yorum yok:

Yorum Gönder

Cluster Propotional Autoscaler - ReplicaSet Ekler/Siler

Giriş Açıklaması şöyle CPA aims to horizontally scale the number of Pod replicas based on the cluster’s scale. A common example is DNS ser...