Skip to main content
Star us on GitHub Star

Kubernetes Node Daemonset

ziti-edge-tunnel

Version: 0.0.14 Type: application AppVersion: 0.22.26

Host OpenZiti services with a tunneler pod

Homepage: https://openziti.io

Source Code

Requirements

Kubernetes: >= 1.20.0-0

Overview

You may use this chart to reach services node-wide via your Ziti network via DNS. For example, if you create a repository or container registry Ziti service, and your cluster has no internet access, you can reach those repositories or container registries via Ziti services. NOTE: For one node kubernetes approaches like k3s, this works out-of-the-box and you can extend your coredns configuration to forward to the Ziti DNS IP, as you can see here. For multinode kubernetes installations, where your cluster DNS could run on a different node, you need to install the node-local-dns feature, which secures that the Ziti DNS name will be resolved locally, on the very same tunneler, as Ziti Intercept IPs can change from node to node. See this helm chart for a possible implementation.

How this Chart Works

This chart deploys a pod running ziti-edge-tunnel, the OpenZiti Linux tunneler, in transparent proxy mode with DNS nameserver. The chart uses container image docker.io/openziti/ziti-edge-tunnel which runs ziti-edge-tunnel run.

Installation

helm repo add openziti https://docs.openziti.io/helm-charts/

After adding the charts repo to Helm then you may enroll the identity and install the chart. You must supply a Ziti identity JSON file when you install the chart.

ziti edge enroll --jwt /tmp/k8s-tunneler.jwt --out /tmp/k8s-tunneler.json
helm install ziti-edge-tunnel openziti/ziti-edge-tunnel --set-file zitiIdentity=/tmp/k8s-tunneler-03.json

Installation using a existing / pre-created secret

Alternatively when you want to use a existing / pre-created secret (i.e. you have sealed-secrets enabled in your setup), you could refer to an existing secret with the ziti identity to use.

This sample shows you how to create the secret:

kubectl create secret generic k8s-tunneler-identity --from-file=persisted-identity=k8s-tunneler.json

When you deploy the helm chart refer to the existing secret:

helm install ziti-edge-tunnel openziti/ziti-edge-tunnel --set secret.existingSecretName=k8s-tunneler-identity

When you don't want to use the default key name persisted-identity you can define your own name by adding --set secret.keyName=myKeyName.

Configure CoreDNS

If you want to resolve your Ziti domain inside the pods, you need to customize CoreDNS. See Official docs.

Customize CoreDNS configuration,

kubectl -n kube-system apply -f - <<EOF
apiVersion: v1
kind: ConfigMap
metadata:
name: coredns-custom
namespace: kube-system
data:
ziti.server: |
your.ziti.domain {
forward . 100.64.0.2
}
EOF

Reload CoreDNS config,

kubectl rollout restart -n kube-system deployment/coredns

Air gapped installations

For air gapped clusters, which mirrors their registries over this OpenZiti tunneler, the upgrade will present the chicken-and-egg problem, and the DaemonSet will stay at the ImagePullBackOff state for ever. To work this problem around, you can install the prepull-daemonset Helm chart, which can pull the new ziti-edge-tunnel image Version needed in beforehand. Once the image is present on every node, you can proceed to upgrade the tunneler without problems.

Values Reference

KeyTypeDefaultDescription
additionalVolumeslist[]additional volumes to mount to ziti-edge-tunnel container
affinityobject{}
dnsPolicystring"ClusterFirstWithHostNet"
fullnameOverridestring""
hostNetworkbooltrue
image.argslist[]
image.pullPolicystring"IfNotPresent"
image.registrystring"docker.io"
image.repositorystring"openziti/ziti-edge-tunnel"
image.tagstring""
imagePullSecretslist[]
livenessProbe.exec.command[0]string"/bin/bash"
livenessProbe.exec.command[1]string"-c"
livenessProbe.exec.command[2]string`"if (ziti-edge-tunnel tunnel_statussed -E 's/(^received\sresponse\s<
livenessProbe.failureThresholdint3
livenessProbe.initialDelaySecondsint180
livenessProbe.periodSecondsint60
livenessProbe.successThresholdint1
livenessProbe.timeoutSecondsint10
log.timeFormatstring"utc"
log.tlsUVLevelint3
log.zitiLevelint3
nameOverridestring""
nodeSelectorobject{}constrain worker nodes where the ziti-edge-tunnel pod can be scheduled
podAnnotationsobject{}
podSecurityContextobject{}
portslist[]
resourcesobject{}
secretobject{}
securityContext.privilegedbooltrue
serviceAccount.annotationsobject{}
serviceAccount.createbooltrue
serviceAccount.namestring""
spireAgent.enabledboolfalseif you are running a container with the spire-agent binary installed then this will allow you to add the hostpath necessary for connecting to the spire socket
spireAgent.spireSocketMntstring"/run/spire/sockets"file path of the spire socket mount
systemDBus.enabledbooltrueenable D-Bus socket connection
systemDBus.systemDBusSocketMntstring"/var/run/dbus/system_bus_socket"file path of the System D-Bus socket mount
tolerationslist[]
helm upgrade {release} {source dir}

Log Level Reference

OpenZiti tunneler and TLSUV log levels are represented by integers, as follows,

Log LevelValue
NONE0
ERR1
WARN2
INFO (default)3
DEBUG4
VERBOSE5
TRACE6