rifaterdemsahin / rancherdesktoponwindows

GitHub repository based on the document you uploaded about installing Rancher Desktop and using Kubernetes on Windows 11
6 stars 0 forks source link

Rancher initial Commands #16

Open rifaterdemsahin opened 1 month ago

rifaterdemsahin commented 1 month ago

İşte Rancher kurulumunda ve yönetiminde dikkat edilmesi gereken noktalarla ilgili komutlar:

  1. Ubuntu ve Docker kurulumu:

    sudo apt update
    sudo apt install docker.io
  2. Virtualization kontrolü (BIOS'ta Nested Virtualization açık mı kontrol etme):

    grep -E --color 'vmx|svm' /proc/cpuinfo
  3. Docker Engine kurulumu:

    sudo systemctl start docker
    sudo systemctl enable docker
    docker --version
  4. Kubernetes kurulumu ve kubeconfig ayarı:

    curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
    chmod +x kubectl
    sudo mv kubectl /usr/local/bin/
    kubectl version --client
  5. Rancher kurulumu:

    sudo docker run -d --restart=unless-stopped \
    -p 80:80 -p 443:443 \
    rancher/rancher:latest
  6. Rancher yedekleme:

    kubectl get namespace
    kubectl get pods -n cattle-system
    kubectl backup create rancher-backup --namespace cattle-system

Bu komutlar Rancher ve Kubernetes ortamlarını kurmak, yönetmek ve yedeklemek için kullanılır.

rifaterdemsahin commented 1 month ago

WSL icine docker kurmaya izin vermiyor.