Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for 3723004 (0.24 sec)

  1. pkg/proxy/nftables/proxier_test.go

    	expected = baseRules + dedent.Dedent(`
    		add element ip kube-proxy cluster-ips { 172.30.0.41 }
    		add element ip kube-proxy cluster-ips { 172.30.0.42 }
    		add element ip kube-proxy cluster-ips { 172.30.0.43 }
    		add element ip kube-proxy service-ips { 172.30.0.41 . tcp . 80 : goto service-ULMVA6XW-ns1/svc1/tcp/p80 }
    		add element ip kube-proxy service-ips { 172.30.0.42 . tcp . 8080 : goto service-MHHHYRWA-ns2/svc2/tcp/p8080 }
    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/proxy/iptables/proxier_test.go

    		-A KUBE-SERVICES -m comment --comment "ns1/svc1:p80 cluster IP" -m tcp -p tcp -d 172.30.0.41 --dport 80 -j KUBE-SVC-XPGD46QRK7WJZT7O
    		-A KUBE-SERVICES -m comment --comment "ns2/svc2:p8080 cluster IP" -m tcp -p tcp -d 172.30.0.42 --dport 8080 -j KUBE-SVC-2VJB64SDSIJUP5T6
    		-A KUBE-SERVICES -m comment --comment "ns3/svc3:p80 cluster IP" -m tcp -p tcp -d 172.30.0.43 --dport 80 -j KUBE-SVC-X27LE4BHSL4DOUIK
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/helpers_test.go

    	add element ip testing service-ips { 172.30.0.41 . tcp . 80 : goto service-ULMVA6XW-ns1/svc1/tcp/p80 }
    
    	# svc2
    	add chain ip testing service-42NFTM6N-ns2/svc2/tcp/p80
    	add rule ip testing service-42NFTM6N-ns2/svc2/tcp/p80 ip daddr 172.30.0.42 tcp dport 80 ip saddr != 10.0.0.0/8 jump mark-for-masquerade
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. pkg/util/iptables/testing/fake_test.go

    		:INPUT - [0:0]
    		:OUTPUT - [0:0]
    		:POSTROUTING - [0:0]
    		:KUBE-TEST - [88:8888]
    		:KUBE-NEW-CHAIN - [0:0]
    		-A KUBE-NEW-CHAIN -d 172.30.0.1 -j DNAT --to-destination 10.0.0.1
    		-A KUBE-NEW-CHAIN -d 172.30.0.2 -j DNAT --to-destination 10.0.0.2
    		-A KUBE-NEW-CHAIN -d 172.30.0.3 -j DNAT --to-destination 10.0.0.3
    		COMMIT
    		`, "\n"))
    	err = fake.RestoreAll([]byte(rules), iptables.FlushTables, iptables.NoRestoreCounters)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.val1 == duration('1h2m') + duration('3s4ms')",
    				"self.val1.getHours() == 1",
    				"self.val1.getMinutes() == 62",
    				"self.val1.getSeconds() == 3723",
    				"self.val1.getMilliseconds() == 3723004",
    				"type(self.val1) == google.protobuf.Duration",
    			},
    			errors: map[string]string{
    				"duration('1')":                      "compilation failed: ERROR: <input>:1:10: invalid duration argument",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/server_test.go

    	defaultCertProvider, err := createTestTLSCerts(testCertSpec{
    		host:  "172.30.0.1",
    		ips:   []string{"172.30.0.1"},
    		names: []string{"kubernetes", "kubernetes.default.svc.cluster.local"},
    	}, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	var sniCerts []SNICertKeyContentProvider
    	certSpecs := []testCertSpec{
    		{
    			host:  "172.30.0.1",
    			ips:   []string{"172.30.0.1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 6K bytes
    - Viewed (0)
  7. pkg/util/iptables/testing/parse_test.go

    		},
    		{
    			name: "destination IP/port",
    			rule: `-A KUBE-SERVICES -m comment --comment "ns1/svc1:p80 cluster IP" -m tcp -p tcp -d 172.30.0.41 --dport 80 -j KUBE-SVC-XPGD46QRK7WJZT7O`,
    			parsed: &Rule{
    				Raw:                `-A KUBE-SERVICES -m comment --comment "ns1/svc1:p80 cluster IP" -m tcp -p tcp -d 172.30.0.41 --dport 80 -j KUBE-SVC-XPGD46QRK7WJZT7O`,
    				Chain:              iptables.Chain("KUBE-SERVICES"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. operator/cmd/mesh/manifest-generate_test.go

    }
    
    func TestManifestGenerateFlagsSetValues(t *testing.T) {
    	g := NewWithT(t)
    	m, _, err := generateManifest("default", "-s values.global.proxy.image=myproxy -s values.global.proxy.includeIPRanges=172.30.0.0/16,172.21.0.0/16", liveCharts,
    		[]string{"templates/deployment.yaml", "templates/istiod-injector-configmap.yaml"})
    	if err != nil {
    		t.Fatal(err)
    	}
    	objs, err := parseObjectSetFromManifest(m)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/values.yaml

          includeInboundPorts: "*"
    
          # istio egress capture allowlist
          # https://istio.io/docs/tasks/traffic-management/egress.html#calling-external-services-directly
          # example: includeIPRanges: "172.30.0.0/16,172.20.0.0/16"
          # would only capture egress traffic on those two IP Ranges, all other outbound traffic would
          # be allowed by the sidecar
          includeIPRanges: "*"
          excludeIPRanges: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/values.yaml

          includeInboundPorts: "*"
          # istio egress capture allowlist
          # https://istio.io/docs/tasks/traffic-management/egress.html#calling-external-services-directly
          # example: includeIPRanges: "172.30.0.0/16,172.20.0.0/16"
          # would only capture egress traffic on those two IP Ranges, all other outbound traffic would
          # be allowed by the sidecar
          includeIPRanges: "*"
          excludeIPRanges: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top