- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 119 for cni0 (0.02 sec)
-
cni/test/testdata/pre/calico.conflist
"name": "k8s-pod-network", "plugins": [ { "etcd_endpoints": "http://10.110.0.136:6666", "ipam": { "type": "calico-ipam" }, "kubernetes": { "kubeconfig": "/etc/cni/net.d/calico-kubeconfig" }, "mtu": 1500, "plugin_log_level": "info", "policy": { "type": "k8s" }, "type": "calico" }, { "capabilities": {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue May 21 18:32:01 UTC 2024 - 528 bytes - Viewed (0) -
cni/pkg/plugin/plugin_cni_conformance.go
// limitations under the License. package plugin import ( "testing" "github.com/containernetworking/cni/pkg/types" ) // Validate k8sArgs struct works for unmarshalling kubelet args // This is important for CNI plugin conformance func TestLoadArgs(t *testing.T) { kubeletArgs := "IgnoreUnknown=1;K8S_POD_NAMESPACE=istio-system;" +
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed May 29 21:50:09 UTC 2024 - 1.5K bytes - Viewed (0) -
Makefile.core.mk
./samples/extauthz/cmd/extauthz # These are binaries that require Linux to build, and should # be skipped on other platforms. Notably this includes the current Linux-only Istio CNI plugin LINUX_AGENT_BINARIES:=./cni/cmd/istio-cni \ ./cni/cmd/install-cni \ $(AGENT_BINARIES) BINARIES:=$(STANDARD_BINARIES) $(AGENT_BINARIES) $(LINUX_AGENT_BINARIES) # List of binaries that have their size tested
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 03 23:53:59 UTC 2024 - 18.4K bytes - Viewed (0) -
cni/pkg/repair/netns.go
// it might be. // // Instead, we rely directly on the procfs. // This rules out two possible methods: // * use crictl to inspect the pod; this returns the bind-mounted network namespace file. // * /var/lib/cni/results shows the outputs of CNI plugins; this containers the bind-mounted network namespace file. // // Instead, we traverse the procfs. Comments on this method are inline. func getPodNetNs(pod *corev1.Pod) (string, error) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jun 28 19:12:54 UTC 2024 - 4.3K bytes - Viewed (0) -
cni/pkg/nodeagent/net.go
"fmt" "net/netip" "strconv" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/types" "istio.io/api/annotation" "istio.io/istio/cni/pkg/iptables" "istio.io/istio/pkg/slices" dep "istio.io/istio/tools/istio-iptables/pkg/dependencies" ) // Adapts CNI to ztunnel server. decoupled from k8s for easier integration testing. type NetServer struct { ztunnelServer ZtunnelServer currentPodSnapshot *podNetnsCache
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Oct 21 16:48:55 UTC 2024 - 9.1K bytes - Viewed (0) -
cni/test/testdata/pre/noname_calico.conflist
"plugin_log_level": "info", "mtu": 1500, "ipam": { "type": "calico-ipam" }, "policy": { "type": "k8s" }, "kubernetes": { "kubeconfig": "/etc/cni/net.d/calico-kubeconfig" } }, { "type": "portmap", "snat": true, "capabilities": { "portMappings": true } } ]
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue May 21 18:32:01 UTC 2024 - 499 bytes - Viewed (0) -
cni/pkg/plugin/sidecar_iptables_unspecified.go
// See the License for the specific language governing permissions and // limitations under the License. // This is a sample chained plugin that supports multiple CNI versions. It // parses prevResult according to the cniVersion package plugin import "errors" // ErrNotImplemented is returned when a requested feature is not implemented.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jan 26 20:34:28 UTC 2024 - 1.1K bytes - Viewed (0) -
cni/test/testdata/pre/nover_calico.conflist
"plugin_log_level": "info", "mtu": 1500, "ipam": { "type": "calico-ipam" }, "policy": { "type": "k8s" }, "kubernetes": { "kubeconfig": "/etc/cni/net.d/calico-kubeconfig" } }, { "type": "portmap", "snat": true, "capabilities": { "portMappings": true } } ]
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue May 21 18:32:01 UTC 2024 - 503 bytes - Viewed (0) -
cni/test/testdata/pre/noplugins_calico.conflist
"plugin_log_level": "info", "mtu": 1500, "ipam": { "type": "calico-ipam" }, "policy": { "type": "k8s" }, "kubernetes": { "kubeconfig": "/etc/cni/net.d/calico-kubeconfig" } }, { "type": "portmap", "snat": true, "capabilities": { "portMappings": true } } ]
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue May 21 18:32:01 UTC 2024 - 527 bytes - Viewed (0) -
cni/pkg/plugin/kubernetes.go
package plugin import ( "context" "fmt" "path/filepath" "strings" v1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/kubernetes" "istio.io/istio/cni/pkg/constants" "istio.io/istio/pkg/kube" "istio.io/istio/pkg/log" "istio.io/istio/pkg/util/sets" ) type PodInfo struct { Containers sets.String Labels map[string]string
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 18:38:14 UTC 2024 - 3.7K bytes - Viewed (0)