Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

internet connectivity for additional interface added via multus #1380

Open
Rammurthy5 opened this issue Jan 24, 2025 · 0 comments
Open

internet connectivity for additional interface added via multus #1380

Rammurthy5 opened this issue Jan 24, 2025 · 0 comments

Comments

@Rammurthy5
Copy link

Hiya, i have got eth0 and net1 added to my pod. internet connectivity for eth0 is fine and i would like the same for net1. how do we achieve that please? here is my config for macvlan and pod below.

macvlan NAD

apiVersion: "k8s.cni.cncf.io/v1"
kind: NetworkAttachmentDefinition
metadata:
  name: macvlan-conf
spec:
  config: '{
      "cniVersion": "0.3.0",
      "type": "macvlan",
      "master": "eth0",
      "mode": "bridge",
      "ipam": {
        "type": "host-local",
        "subnet": "192.168.1.0/24",
        "rangeStart": "192.168.1.200",
        "rangeEnd": "192.168.1.216",
        "routes": [
          { "dst": "0.0.0.0/0" }
        ],
        "gateway": "192.168.1.1"
      }
    }'

samplepod.yaml

piVersion: v1
kind: Pod
metadata:
  name: samplepod
  annotations:
    k8s.v1.cni.cncf.io/networks: '[
              {
                 "name" : "macvlan-conf",
                 "default-route": ["192.168.1.1"]
              }
        ]'
spec:
  containers:
  - name: samplepod
    command: ["/bin/ash", "-c", "trap : TERM INT; sleep infinity & wait"]
    image: alpine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant