Configuration
vNode is deployed as a Helm chart and can be configured by overriding the options with a values.yaml
.
vNode Defaults
vNode attempts to determine what Kubernetes distribution (distro) that it's being deployed on. Based on the distro, it will set the configuration. If not, it will fall back to the default value.
# vNode Runtime config. vNode runtime will try to figure out the paths automatically, but you can
# overwrite them here if needed.
config:
# Platform related configuration
platform:
# The host of the platform. e.g. my-platform.loft.com
host: ""
# The access key to use for the platform
accessKey: ""
# If the connection to the platform is insecure
insecure: false
# The root directory of containerd. Default: /var/lib/containerd
containerdRoot: ""
# The state directory of containerd. Default: /run/containerd
containerdState: ""
# The config path for containerd. Default: /etc/containerd/config.toml
containerdConfig: ""
# The directory where to copy the shims to. Default: /usr/local/bin
containerdShimDir: ""
# The root path for the kubelet. Default: /var/lib/kubelet
kubeletRoot: ""
# The root path for the kubelet pod logs. Default: /var/log
kubeletLogRoot: ""
# The root directory of vNode runtime. Default: /var/lib/vnode
vNodeRuntimeRoot: ""
# The directory where the cni configuration is stored. Default: /etc/cni/net.d
cniConfDir: ""
# The directory where the cni binaries are stored. Default: /opt/cni/bin
cniBinDir: ""
# DaemonSet options
daemonSet:
# Image is the image to use for the daemon set
image:
# Configure the registry of the container image, e.g. my-registry.com or ghcr.io
registry: "ghcr.io"
# Configure the repository of the container image, e.g. my-repo/my-image.
repository: "loft-sh/vnode-runtime"
# Tag is the tag of the container image, e.g. latest
tag: ""
# Image pull policy for the vNode runtime image
imagePullPolicy: ""
# Image pull secrets to use for pulling the image
imagePullSecrets: []
# Command for the vNode runtime image
command: ["/var/lib/vnode/bin/vnode-manager"]
# Args for the vNode runtime image
args: ["install"]
# Env are extra environment options to set
env: []
# Volume mounts are extra volume mounts to set
volumeMounts: []
# Volumes are extra volumes to set
volumes: []
# Node selector to use for the daemon set
nodeSelector: {}
# Tolerations for the vNode runtime daemon set
tolerations: []