Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for svc5 (0.06 sec)

  1. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy external-HVFWP5L3-ns5/svc5/tcp/p80
    		add rule ip kube-proxy external-HVFWP5L3-ns5/svc5/tcp/p80 jump mark-for-masquerade
    		add rule ip kube-proxy external-HVFWP5L3-ns5/svc5/tcp/p80 goto service-HVFWP5L3-ns5/svc5/tcp/p80
    
    		add chain ip kube-proxy endpoint-GTK6MW7G-ns5/svc5/tcp/p80__10.180.0.3/80
    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/ipvs/proxier_test.go

    			NodePort: int32(svcNodePort),
    		}}
    		svc.Spec.ExternalTrafficPolicy = v1.ServiceExternalTrafficPolicyLocal
    	})
    
    	svc1, svc2, invalidSvc3 := *sampleSvc, *sampleSvc, *sampleSvc
    	svc1.Name, svc1.Spec.HealthCheckNodePort = "valid-svc1", 30000
    	svc2.Name, svc2.Spec.HealthCheckNodePort = "valid-svc2", 30001
    	// make svc3 invalid by setting external traffic policy to cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder_test.go

    			destRule: &networking.DestinationRule{
    				Host: "foo.default.svc.cluster.local",
    				TrafficPolicy: &networking.TrafficPolicy{
    					Tls: &networking.ClientTLSSettings{
    						Mode:            networking.ClientTLSSettings_SIMPLE,
    						CaCertificates:  constants.RootCertFilename,
    						Sni:             "foo.default.svc.cluster.local",
    						SubjectAltNames: []string{"foo.default.svc.cluster.local"},
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  4. istioctl/pkg/authz/testdata/configdump.yaml

                "@type": "type.googleapis.com/envoy.extensions.filters.network.tcp_proxy.v3.TcpProxy",
                "stat_prefix": "outbound|15021||ratings-istio-waypoint.ambient.svc.cluster.local",
                "cluster": "outbound|15021||ratings-istio-waypoint.ambient.svc.cluster.local"
               }
              }
             ]
            }
           ],
           "traffic_direction": "OUTBOUND",
           "bind_to_port": false
          },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  5. tests/integration/pilot/common/routing.go

    			cfg.ClusterLocalFQDN(),
    			fmt.Sprintf("%s:%d", cfg.ClusterLocalFQDN(), port),
    			fmt.Sprintf("%s:12345", cfg.ClusterLocalFQDN()),
    			fmt.Sprintf("%s.%s.svc", cfg.Service, cfg.Namespace.Name()),
    			fmt.Sprintf("%s.%s.svc:%d", cfg.Service, cfg.Namespace.Name(), port),
    			fmt.Sprintf("%s.%s.svc:12345", cfg.Service, cfg.Namespace.Name()),
    			cfg.Service,
    			fmt.Sprintf("%s:%d", cfg.Service, port),
    			fmt.Sprintf("%s:12345", cfg.Service),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

        operations:
        - CREATE
        - UPDATE
        resources:
        - '*'
      sideEffects: None
    
    ---
    apiVersion: v1
    data:
      mesh: |-
        defaultConfig:
          discoveryAddress: istiod.istio-system.svc:15012
          tracing:
            zipkin:
              address: zipkin.istio-system:9411
        defaultProviders:
          metrics:
          - prometheus
        enablePrometheusMerge: true
        rootNamespace: istio-control
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    	}
    	return r
    }
    
    func getServiceExternalIP(svc *api.Service, wide bool) string {
    	switch svc.Spec.Type {
    	case api.ServiceTypeClusterIP:
    		if len(svc.Spec.ExternalIPs) > 0 {
    			return strings.Join(svc.Spec.ExternalIPs, ",")
    		}
    		return "<none>"
    	case api.ServiceTypeNodePort:
    		if len(svc.Spec.ExternalIPs) > 0 {
    			return strings.Join(svc.Spec.ExternalIPs, ",")
    		}
    		return "<none>"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    			TrafficPolicy: &networking.TrafficPolicy{
    				Tls: &networking.ClientTLSSettings{
    					Mode:            networking.ClientTLSSettings_SIMPLE,
    					CaCertificates:  "test",
    					SubjectAltNames: []string{"reviews.default.svc"},
    				},
    			},
    		}, valid: true},
    
    		{name: "InsecureSkipVerify is not specified with tls mode simple, and the ca cert is specified by CredentialName", in: &networking.DestinationRule{
    			Host: "reviews",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    					if len(parts) == 2 {
    						ns := parts[0]
    						svc := parts[1]
    						if ns == "." {
    							ns = cfg.Namespace
    						}
    						if _, ok := nssSvcs[ns]; !ok {
    							nssSvcs[ns] = map[string]bool{}
    						}
    
    						// test/a
    						// test/a
    						// test/*
    						if svc != "*" {
    							if _, ok := nssSvcs[ns][svc]; ok || nssSvcs[ns]["*"] {
    								// already exists
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/istio-service-dashboard.json

            "skipUrlSync": false,
            "type": "datasource"
          },
          {
            "current": {
              "selected": false,
              "text": "details.default.svc.cluster.local",
              "value": "details.default.svc.cluster.local"
            },
            "datasource": {
              "type": "prometheus",
              "uid": "${datasource}"
            },
            "definition": "",
            "hide": 0,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
Back to top