K3s + Helm Self-Service

Overview

Minimal setup required to use Helm with K3s.

DNS Configuration

Create: /etc/rancher/k3s/resolv.conf

nameserver 1.1.1.1
nameserver 8.8.8.8
search .
options ndots:1

K3s Configuration

Create/Edit: /etc/rancher/k3s/config.yaml

flannel-backend: vxlan
flannel-iface: eth0
resolv-conf: /etc/rancher/k3s/resolv.conf

Apply Changes

systemctl restart k3s

Helm Quick Usage

helm repo add <name> <url>
helm repo update
helm install <release> <chart>
helm upgrade <release> <chart>
helm uninstall <release>

Notes

  • Interface must be eth0
  • DNS config is required
Помог ли вам данный ответ? 0 Пользователи нашли это полезным (0 голосов)