19 Mayıs 2022 Perşembe

minikube profile seçeneği - Farklı Cluster İle Çalışmak İçindir

Giriş
Açıklaması şöyle. Yani aslında Profile ile Kubernetes Context aynı şey
In order to run multiple Kubernetes clusters locally, Minikube comes with the concept of profiles. For example, if you want to work with multiple versions of Kubernetes, you can create multiple Kubernetes clusters using Minikube. Each cluster will be assigned a separate Minikube profile. Most of the Minikube commands accept a –profile flag (or -p for short) that can be used to specify which of the Kubernetes clusters the command will be applied to. 
Açıklaması şöyle. Profile dosyaları  "~/.minikube/profiles" dizininde
If no profile is specified, either using the minikube profile command or the –profile switch, a default profile named minikube will be used.

Profile Değiştirme
Açıklaması şöyle.  
If you plan to work with one specific profile for a while, a more convenient alternative exists, where you specify the current profile with the following command:
Yani farklı bir Kubernetes cluster'ına bağlanmak için şöyle yaparız
minikube profile my-profile
Profile Listeleme
Şöyle yaparız
>minikube profile list
|----------|-----------|---------|--------------|------|---------|---------|-------|
| Profile  | VM Driver | Runtime |      IP      | Port | Version | Status  | Nodes |
|----------|-----------|---------|--------------|------|---------|---------|-------|
| minikube | docker    | docker  | 192.168.49.2 | 8443 | v1.22.2 | Running |     1 |
|----------|-----------|---------|--------------|------|---------|---------|-------|
Profile İsmini Görme
Şimdiki profile ismini görmek için şöyle yaparız
minikube config get profile

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...