aboutsummaryrefslogtreecommitdiffstats
path: root/tools/k8s/app-deployment/helm/charts/mynet.yaml
blob: ca3af9a7712703c9384eba86e9622b5a7ef19272 (plain)
1
2
3
4
5
6
7
8
9

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.h
apiVersion: "k8s.cni.cncf.io/v1"
kind: NetworkAttachmentDefinition
metadata:
  name: mynet
spec:
  config: '{
    "cniVersion":"0.3.0"
    "name":"mynet"
    "plugins":[
    {
      "bridge":"kube-bridge",
      "ipam":{
        "subnet":10.244.0.0/24",
        "type":"host-local"
        },
        "isDefaultGateway":true,
        "type":"bridge"
      }
    ]
  }'