new test of fortigate for KSD

This commit is contained in:
maximilian.bartz 2025-07-22 10:47:20 +02:00
parent 9980d50b07
commit f76153ff5d
10 changed files with 97 additions and 195 deletions

View file

@ -0,0 +1,20 @@
apiVersion: "k8s.cni.cncf.io/v1"
kind: NetworkAttachmentDefinition
metadata:
name: lan-net
namespace: ${TENANT_NAMESPACE}
spec:
config: '{
"cniVersion": "0.3.1",
"type": "bridge",
"bridge": "br-lan",
"ipam": {
"type": "static",
"addresses": [
{
"address": "172.168.100.2/24",
"gateway": "172.168.100.1"
}
]
}
}'