Flannel Helm Configuration

Abstract

A brief guide to using the Flannel Helm Chart for bare metal K8S.

Flannel Helm Configuration#

Flannel Chart Usage#

For basic installations this is a simple process[1]. You can find the source code in the Flannel GitHub Repository.

  1. Create the namespace.

    create#
    kubectl create ns kube-flannel
    
  2. Label the namespace.

    kubectl label --overwrite ns kube-flannel pod-security.kubernetes.io/enforce=privileged
    
  3. Update your local repositories.

    helm repo add flannel https://flannel-io.github.io/flannel/
    
  4. Deploy the chart.

    helm install flannel -f values.yaml --namespace kube-flannel flannel/flannel