Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for serviceentry (0.19 sec)

  1. pkg/config/validation/validation_test.go

    		}
    	}
    }
    
    func TestValidateServiceEntries(t *testing.T) {
    	cases := []struct {
    		name    string
    		in      *networking.ServiceEntry
    		valid   bool
    		warning bool
    	}{
    		{
    			name: "discovery type DNS", in: &networking.ServiceEntry{
    				Hosts: []string{"*.google.com"},
    				Ports: []*networking.ServicePort{
    					{Number: 80, Protocol: "http", Name: "http-valid1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. 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)
  3. pilot/pkg/networking/core/cluster_test.go

    	}{
    		{
    			name:                 "service is added",
    			services:             []*model.Service{testService1, testService2},
    			configUpdated:        sets.New(model.ConfigKey{Kind: kind.ServiceEntry, Name: "testnew.com", Namespace: TestServiceNamespace}),
    			watchedResourceNames: []string{"outbound|8080||test.com"},
    			usedDelta:            true,
    			removedClusters:      nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    metadata:
      name: external
    spec:
      host: %s
      trafficPolicy:
        tls:
          mode: SIMPLE
          insecureSkipVerify: true
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: alt-external-service
    spec:
      exportTo: [.]
      hosts:
      - %s
      resolution: NONE
      ports:
      - name: http-tls-origination
        number: 8888
        protocol: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    release: istio name: serviceentries.networking.istio.io spec: group: networking.istio.io names: categories: - istio-io - networking-istio-io kind: ServiceEntry listKind: ServiceEntryList plural: serviceentries shortNames: - se singular: serviceentry scope: Namespaced versions: - additionalPrinterCol: - description: The hosts associated with the ServiceEntry jsonPath: .spec.hosts name: Hosts type: string - description: Whether the service is external to the mesh or part of the mesh (MESH_EXTERNAL or...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

    ns":{"calcs":["lastNotNull"],"fields":"","values":false},"textMode":"auto"},"pluginVersion":"10.1.5","targets":[{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"max(pilot_k8s_cfg_events{type=\"ServiceEntry\", event=\"add\"}) - (max(pilot_k8s_cfg_events{type=\"ServiceEntry\", event=\"delete\"}) or max(up * 0))","format":"time_series","intervalFactor":1,"refId":"A"}],"title":"Service Entries","type":"stat"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"fieldConfig":{"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top