Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Extract the downloaded file: tar -xf gv-platform-$VERSION.tar

  2. Prepare K3s for air-gap installation:

    Code Block
    languagebash
    # mkdir -p /var/lib/rancher/k3s/agent/images/
    # gunzip -c assets/k3s-airgap-images-amd64.tar.gz > /var/lib/rancher/k3s/agent/images/airgap-images.tar
    # cp assets/k3s /usr/local/bin && chmod +x /usr/local/bin/k3s
    # tar -xzf assets/helm-v3.8.2-linux-amd64.tar.gz
    # cp linux-amd64/helm /usr/local/bin
  3. Before installation, it’s recommended to run automatic checks (as root; PRODUCT_NAME is either “synergy” (endpoint agent) or “dspm“ (dspm without endpoint agent) or “ultimate“ (dspm + endpoint agent). If unsure use “ultimate“):

    Code Block
    # cat scripts/k3s.sh | PRODUCT_NAME=enterpriseultimate ONLY_PRECHECK=true bash -


    Install K3s:

    Code Block
    languagebash
    # cat scripts/k3s.sh | INSTALL_K3S_SKIP_DOWNLOAD=true K3S_KUBECONFIG_MODE="644" SKIP_NETWORK_CHECKS=true sh -s - server --node-name=local-01

...