Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 542 for svc4 (0.06 sec)

  1. pkg/proxy/nftables/proxier_test.go

    			svc.Spec.Type = "NodePort"
    			svc.Spec.ClusterIP = "172.30.0.43"
    			svc.Spec.Ports = []v1.ServicePort{{
    				Name:     "p80",
    				Port:     80,
    				Protocol: v1.ProtocolTCP,
    				NodePort: 3003,
    			}}
    		}),
    		// create ExternalIP service
    		makeTestService("ns4", "svc4", func(svc *v1.Service) {
    			svc.Spec.Type = "NodePort"
    			svc.Spec.ClusterIP = "172.30.0.44"
    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/nftables/helpers_test.go

    		add rule ip kube-proxy service-LAUZTJTB-ns4/svc4/tcp/p80 numgen random mod 2 vmap { 0 : goto endpoint-UNZV3OEC-ns4/svc4/tcp/p80__10.180.0.4/80 , 1 : goto endpoint-5RFCDDV7-ns4/svc4/tcp/p80__10.180.0.5/80 }
    		add rule ip kube-proxy external-LAUZTJTB-ns4/svc4/tcp/p80 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)
  3. pkg/proxy/iptables/proxier_test.go

    				-A KUBE-SERVICES -m comment --comment "ns4/svc4:p80 cluster IP" svc4 line 2
    				-A KUBE-SERVICES -m comment --comment "ns4/svc4 blah" svc4 line 3
    				-A KUBE-SERVICES -m comment --comment "ns3/svc3:p80 cluster IP" svc3 line 1
    				-A KUBE-SERVICES -m comment --comment "ns3/svc3 blah" svc3 line 2
    				-A KUBE-SERVICES -m comment --comment ns3/svc3 svc3 line 3
    				COMMIT
    				`),
    			output: dedent.Dedent(`
    				*filter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context_test.go

    		},
    		{
    			proxyNs:   "test2",
    			wantHosts: []string{"svc2", "svc3", "svc4", "svc4", "svc4"},
    		},
    		{
    			proxyNs:   "ns1",
    			wantHosts: []string{"svc1", "svc2", "svc3", "svc4", "svc4", "svc4"},
    		},
    		{
    			proxyNs:   "random",
    			wantHosts: []string{"svc3", "svc4", "svc4", "svc4"},
    		},
    	}
    	for _, tt := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			},
    		},
    		[]*model.Service{svc1, svc2, svc3},
    		2,
    		meshWatcher,
    		fx,
    		controller,
    	)
    
    	// permit all discovery namespaces by omitting discovery selectors (1 create event should trigger for the nsC service)
    	updateMeshConfig(
    		&meshconfig.MeshConfig{
    			DiscoverySelectors: []*meshconfig.LabelSelector{},
    		},
    		[]*model.Service{svc1, svc2, svc3, svc4},
    		1,
    		meshWatcher,
    		fx,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. pkg/util/iptables/testing/parse_test.go

    			rule:      `-A KUBE-SVC-4SW47YFZTEDKD3PK -m comment --comment ns4/svc4:p80 -i eth0 -j KUBE-SEP-UKSFD7AGPMPPLUHC`,
    			nonStrict: true,
    			parsed: &Rule{
    				Raw:     `-A KUBE-SVC-4SW47YFZTEDKD3PK -m comment --comment ns4/svc4:p80 -i eth0 -j KUBE-SEP-UKSFD7AGPMPPLUHC`,
    				Chain:   iptables.Chain("KUBE-SVC-4SW47YFZTEDKD3PK"),
    				Comment: &IPTablesValue{Value: "ns4/svc4:p80"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/correct-port-name-external-name-service-type.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: nginx-svc4
      namespace: nginx-ns4
    spec:
      externalName: nginx.example.com
      ports:
      - name: https
        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
    - 218 bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/benchmark-httproute.yaml

            value: /foo
          headers:
          - name: my-header
            value: some-value
            type: Exact
        backendRefs:
        - name: svc1
          port: 80
      - matches:
        - path:
            type: RegularExpression
            value: /foo((\/).*)?
        backendRefs:
        - name: svc2
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: allowed-2
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml

            value: /foo
          headers:
          - name: my-header
            value: some-value
            type: Exact
        backendRefs:
        - name: svc1
          port: 80
      - matches:
        - path:
            type: RegularExpression
            value: /foo((\/).*)?
        backendRefs:
        - name: svc2
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: allowed-2
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion_test.go

    		},
    		Ports:    ports,
    		Hostname: "svc2.allowed-1.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "allowed-2",
    		},
    		Ports:    ports,
    		Hostname: "svc2.allowed-2.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "allowed-1",
    		},
    		Ports:    ports,
    		Hostname: "svc1.allowed-1.svc.domain.suffix",
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
Back to top