You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
ESxi - 6.5
Ubuntu Version : 22.04
k3s version 1.24.9
Deployed multus using - multus-daemonset-thick.yaml
Net attach def used -
apiVersion: "k8s.cni.cncf.io/v1"
kind: NetworkAttachmentDefinition
metadata:
name: server-side
spec:
config: '{
"cniVersion": "0.3.1",
"type": "macvlan",
"master": "ens160",
"mode": "bridge",
"ipam": {
"type": "host-local",
"subnet": "20.20.1.0/24",
"rangeStart": "20.20.1.200",
"rangeEnd": "20.20.1.220"
}
}'
Pod spec -
apiVersion: v1
kind: Pod
metadata:
name: test-server
annotations:
k8s.v1.cni.cncf.io/networks: server-side
This does not create the required interface on the pod, same works fine on Ubuntu 20.04
Beta Was this translation helpful? Give feedback.
All reactions