Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for ns3 (0.02 sec)

  1. pkg/proxy/nftables/proxier_test.go

    		# svc3
    		add chain ip kube-proxy service-4AT6LBPK-ns3/svc3/tcp/p80
    		add rule ip kube-proxy service-4AT6LBPK-ns3/svc3/tcp/p80 ip daddr 172.30.0.43 tcp dport 80 ip saddr != 10.0.0.0/8 jump mark-for-masquerade
    		add rule ip kube-proxy service-4AT6LBPK-ns3/svc3/tcp/p80 numgen random mod 1 vmap { 0 : goto endpoint-UEIP74TE-ns3/svc3/tcp/p80__10.180.0.3/80 }
    		add chain ip kube-proxy external-4AT6LBPK-ns3/svc3/tcp/p80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  2. pkg/kubelet/secret/secret_manager_test.go

    			{envVarNames: []string{"s6"}},
    			{envFromNames: []string{"s60"}},
    		},
    	}
    	manager.RegisterPod(podWithSecrets("ns3", "name", s3))
    	manager.UnregisterPod(podWithSecrets("ns3", "name", s3))
    
    	// We should have only: s1, s3 and s4 secrets in namespaces: ns1 and ns2.
    	for _, ns := range []string{"ns1", "ns2", "ns3"} {
    		for _, secret := range []string{"s1", "s2", "s3", "s4", "s5", "s6", "s20", "s40", "s50"} {
    			shouldExist :=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  3. pkg/kubelet/configmap/configmap_manager_test.go

    		containerEnvConfigMaps: []envConfigMaps{
    			{envVarNames: []string{"s6"}},
    			{envFromNames: []string{"s60"}},
    		},
    	}
    	manager.RegisterPod(podWithConfigMaps("ns3", "name", s3))
    	manager.UnregisterPod(podWithConfigMaps("ns3", "name", s3))
    
    	existingMaps := map[string][]string{
    		"ns1": {"s1", "s2", "s20"},
    		"ns2": {"s3", "s4", "s40"},
    	}
    	shouldExist := func(ns, configMap string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  4. pkg/config/host/names.go

    // NamesForNamespace(["ns1/foo.com","ns2/bar.com"], "ns3")   = Names([])
    // NamesForNamespace(["ns1/foo.com","*/bar.com"], "ns1")     = Names(["foo.com","bar.com"])
    // NamesForNamespace(["ns1/foo.com","*/bar.com"], "ns3")     = Names(["bar.com"])
    // NamesForNamespace(["foo.com","ns2/bar.com"], "ns2")       = Names(["foo.com","bar.com"])
    // NamesForNamespace(["foo.com","ns2/bar.com"], "ns3")       = Names(["foo.com"])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/incorrect-port-name-external-name-service-type.yaml

    spec:
      externalName: nginx.example.com
      ports:
      - port: 443
        protocol: TCP
        targetPort: 443
      type: ExternalName
    --- 
    apiVersion: v1
    kind: Service
    metadata:
      name: nginx-svc3
      namespace: nginx-ns3
    spec:
      externalName: nginx.example.com
      ports:
      - name: tcp
        port: 443
        protocol: TCP
        targetPort: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 09 00:46:04 UTC 2021
    - 641 bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar_test.go

    				Name:      "baz",
    				Namespace: "ns3",
    			},
    		},
    		{
    			Hostname: "bar.svc.cluster.local",
    			Ports:    twoMatchingPorts,
    			Attributes: ServiceAttributes{
    				Name:      "bar",
    				Namespace: "ns2",
    			},
    		},
    		{
    			Hostname: "barprime.svc.cluster.local",
    			Ports:    port7442,
    			Attributes: ServiceAttributes{
    				Name:      "barprime",
    				Namespace: "ns3",
    			},
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier_test.go

    				-A KUBE-SVC-X27LE4BHSL4DOUIK -m comment --comment ns3/svc3:p80 -j KUBE-SEP-OYPFS5VJICHGATKP
    				-A KUBE-SEP-OYPFS5VJICHGATKP -m comment --comment ns3/svc3:p80 -s 10.180.0.3 -j KUBE-MARK-MASQ
    				-A KUBE-SEP-OYPFS5VJICHGATKP -m comment --comment ns3/svc3:p80 -m tcp -p tcp -j DNAT --to-destination 10.180.0.3:80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  8. pkg/config/host/names_test.go

    			"ns1",
    			host.Names{"foo.com"},
    		},
    		{
    			[]string{"ns1/foo.com", "ns2/bar.com"},
    			"ns3",
    			host.Names{},
    		},
    		{
    			[]string{"ns1/foo.com", "*/bar.com"},
    			"ns1",
    			host.Names{"foo.com", "bar.com"},
    		},
    		{
    			[]string{"ns1/foo.com", "*/bar.com"},
    			"ns3",
    			host.Names{"bar.com"},
    		},
    		{
    			[]string{"foo.com", "ns2/bar.com"},
    			"ns2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 10:35:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. pkg/kubelet/util/manager/cache_based_manager_test.go

    			{envVarNames: []string{"s6"}},
    			{envFromNames: []string{"s60"}},
    		},
    	}
    	manager.RegisterPod(podWithSecrets("ns3", "name", s3))
    	manager.UnregisterPod(podWithSecrets("ns3", "name", s3))
    
    	// We should have only: s1, s3 and s4 secrets in namespaces: ns1 and ns2.
    	for _, ns := range []string{"ns1", "ns2", "ns3"} {
    		for _, secret := range []string{"s1", "s2", "s3", "s4", "s5", "s6", "s20", "s40", "s50"} {
    			shouldExist :=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/helpers_test.go

    		add rule ip kube-proxy service-4AT6LBPK-ns3/svc3/tcp/p80 ip daddr 172.30.0.43 tcp dport 80 ip saddr != 10.0.0.0/8 jump mark-for-masquerade
    		add rule ip kube-proxy service-4AT6LBPK-ns3/svc3/tcp/p80 numgen random mod 1 vmap { 0 : goto endpoint-UEIP74TE-ns3/svc3/tcp/p80__10.180.0.3/80 }
    		add rule ip kube-proxy external-4AT6LBPK-ns3/svc3/tcp/p80 jump mark-for-masquerade
    		add rule ip kube-proxy external-4AT6LBPK-ns3/svc3/tcp/p80 goto service-4AT6LBPK-ns3/svc3/tcp/p80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top