Revision e696c416b6e51ee80f81acea0474fcc21744bf34 authored by Yutaro Hayakawa on 07 June 2023, 05:54:38 UTC, committed by Yutaro Hayakawa on 08 June 2023, 04:40:14 UTC
As we now implemented the support for externalTrafficPolicy in
24e37ed4f42916333335e678db1ae78022ac3e4c.

Signed-off-by: Yutaro Hayakawa <yutaro.hayakawa@isovalent.com>
1 parent 6d4b2f7
Raw File
nvim-dap.lua
local dap = require('dap')

dap.adapters.cilium_kind_control_plane_1 = {
    type = "server",
    host = "127.0.0.1",
    port = 23401,
}
dap.adapters.cilium_kind_worker_1 = {
    type = "server",
    host = "127.0.0.1",
    port = 23411
}
dap.adapters.cilium_kind_worker_2 = {
    type = "server",
    host = "127.0.0.1",
    port = 23412
}
dap.adapters.cilium_operator_kind_worker_1 = {
    type = "server",
    host = "127.0.0.1",
    port = 23511
}
dap.configurations.go = {
    {
        type = "cilium_kind_control_plane_1",
        request = "attach",
        name = "Attach to kind-control-plane-1",
        mode = "remote",
        substitutePath = {
            {
                from = "${workspaceFolder}",
                to = "/go/src/github.com/cilium/cilium"
            }
        }
    },
    {
        type = "cilium_kind_worker_1",
        request = "attach",
        name = "Attach to kind-worker-1",
        mode = "remote",
        substitutePath = {
            {
                from = "${workspaceFolder}",
                to = "/go/src/github.com/cilium/cilium"
            }
        }
    },
    {
        type = "cilium_kind_worker_2",
        request = "attach",
        name = "Attach to kind-worker-2",
        mode = "remote",
        substitutePath = {
            {
                from = "${workspaceFolder}",
                to = "/go/src/github.com/cilium/cilium"
            }
        }
    },
    {
        type = "cilium_operator_kind_worker_1",
        request = "attach",
        name = "Attach to Cilium Operator",
        mode = "remote",
        substitutePath = {
            {
                from = "${workspaceFolder}",
                to = "/go/src/github.com/cilium/cilium"
            }
        }
    }
}
back to top