Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 116 for serviceentry (0.28 sec)

  1. pilot/pkg/serviceregistry/util/workloadinstances/index_test.go

    	"istio.io/istio/pkg/test/util/assert"
    )
    
    var GlobalTime = time.Now()
    
    // ServiceEntry with a selector
    var selector = &config.Config{
    	Meta: config.Meta{
    		GroupVersionKind:  gvk.ServiceEntry,
    		Name:              "selector",
    		Namespace:         "selector",
    		CreationTimestamp: GlobalTime,
    	},
    	Spec: &networking.ServiceEntry{
    		Hosts: []string{"selector.com"},
    		Ports: []*networking.ServicePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    		name   string
    		inputs []any
    		se     *networkingclient.ServiceEntry
    		result []*workloadapi.Workload
    	}{
    		{
    			name:   "dns without endpoints",
    			inputs: []any{},
    			se: &networkingclient.ServiceEntry{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    				},
    				Spec: networking.ServiceEntry{
    					Addresses: []string{"1.2.3.4"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/all.go

    	"istio.io/istio/pkg/config/analysis/analyzers/multicluster"
    	"istio.io/istio/pkg/config/analysis/analyzers/schema"
    	"istio.io/istio/pkg/config/analysis/analyzers/service"
    	"istio.io/istio/pkg/config/analysis/analyzers/serviceentry"
    	"istio.io/istio/pkg/config/analysis/analyzers/sidecar"
    	"istio.io/istio/pkg/config/analysis/analyzers/telemetry"
    	"istio.io/istio/pkg/config/analysis/analyzers/virtualservice"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. releasenotes/notes/49476.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issues:
    - 49476
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 00:44:31 UTC 2024
    - 219 bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/gateway_simulation_test.go

    hosts:
    - "example.com"
    `) + createGateway("gateway8081", "", `
    port:
      number: 8081
      name: http
      protocol: HTTP
    hosts:
    - "example.com"
    `) + `
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-instance
      namespace: istio-system
      labels:
        experimental.istio.io/disable-gateway-port-translation: "true"
    spec:
      hosts: ["a.example.com"]
      ports:
      - number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    					}
    				}
    			}
    			if serviceEntry.Resolution == networking.ServiceEntry_DNS_ROUND_ROBIN && len(serviceEntry.Endpoints) > 1 {
    				errs = AppendValidation(errs,
    					fmt.Errorf("there must only be 0 or 1 endpoint for resolution mode %s", serviceEntry.Resolution))
    			}
    
    			for _, endpoint := range serviceEntry.Endpoints {
    				if endpoint == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. pkg/config/schema/collections/collections.gen.go

    		ValidateProto: validation.EmptyValidate,
    	}.MustBuild()
    
    	ServiceEntry = resource.Builder{
    		Identifier: "ServiceEntry",
    		Group:      "networking.istio.io",
    		Kind:       "ServiceEntry",
    		Plural:     "serviceentries",
    		Version:    "v1alpha3",
    		VersionAliases: []string{
    			"v1beta1",
    			"v1",
    		},
    		Proto: "istio.networking.v1alpha3.ServiceEntry", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/helpers.go

    	return a.ClusterID.String() + "//" + "Pod/" + p.Namespace + "/" + p.Name
    }
    
    // name format: <cluster>/<group>/<kind>/<namespace>/<name></section-name>
    // if the WorkloadEntry is inlined in the ServiceEntry, we may need section name. caller should use generateServiceEntryUID
    func (a *index) generateWorkloadEntryUID(wkEntryNamespace, wkEntryName string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 22 20:35:23 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route_cache.go

    	for _, svc := range r.Services {
    		configs = append(configs, model.ConfigKey{
    			Kind:      kind.ServiceEntry,
    			Name:      string(svc.Hostname),
    			Namespace: svc.Attributes.Namespace,
    		}.HashCode())
    		for _, alias := range svc.Attributes.Aliases {
    			configs = append(configs, model.ConfigKey{Kind: kind.ServiceEntry, Name: alias.Hostname.String(), Namespace: alias.Namespace}.HashCode())
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. tests/integration/telemetry/policy/helper_test.go

    	"istio.io/istio/pkg/test/util/tmpl"
    	util "istio.io/istio/tests/integration/telemetry"
    )
    
    const (
    	// ServiceEntry is used to create conflicts on various ports
    	// As defined below, the tcp-conflict and https-conflict ports are 9443 and 9091
    	ServiceEntry = `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: http
    spec:
      hosts:
      - istio.io
      location: MESH_EXTERNAL
      ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top