Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 205 for ServiceEntry (0.32 sec)

  1. pkg/config/schema/collections/collections.agent.gen.go

    	}.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
    - 12.9K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-reviews
      namespace: default
    spec:
      hosts:
      - external-reviews.org
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: eu-wildcard
      namespace: default
    spec:
      hosts:
      - "*.eu.bookinfo.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-entry-ignore
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. samples/external/aptget.yaml

    # This ServiceEntry exposes the hosts needed for installing packages with apt-get.
    # After applying this file, Istio-enabled pods (configured apt-get) be able to execute
    # `apt-get upgrade` and `apt-get install`.  If this is not installed you may get
    # "404  Not Found"
    
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: make-aptget-work
    spec:
      hosts:
      - deb.debian.org
      - cdn-fastly.deb.debian.org
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 14 21:21:10 UTC 2019
    - 559 bytes
    - Viewed (0)
  4. pilot/pkg/xds/pushqueue_test.go

    		}
    		expectedEds := sets.New(
    			model.ConfigKey{
    				Kind:      kind.ServiceEntry,
    				Name:      "foo",
    				Namespace: "",
    			},
    			model.ConfigKey{
    				Kind:      kind.ServiceEntry,
    				Name:      "bar",
    				Namespace: "ns1",
    			},
    		)
    		if !reflect.DeepEqual(model.ConfigsOfKind(info.ConfigsUpdated, kind.ServiceEntry), expectedEds) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. tests/testdata/config/byon.yaml

    # Verify the route can send to an arbitrary service name
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: byon
      namespace: testns
    spec:
       hosts:
       - byon.test.istio.io
       ports:
       - number: 80
         name: http
         protocol: HTTP
       resolution: STATIC
       endpoints:
        - address: 127.0.0.2
          ports:
            http: 7072
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/controller.go

    // from a ServiceEntry selector, the parent is the ServiceEntry
    // This is used to distinguish between 1 config (Pod/SE) selected by 2 different parents (ServiceEntry).
    type configKeyWithParent struct {
    	configKey
    	parent types.NamespacedName
    }
    
    // configKey unique identifies a config object managed by this registry (ServiceEntry and WorkloadEntry)
    type configKey struct {
    	kind      configType
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. pilot/pkg/xds/proxy_dependencies_test.go

    			model.ConfigKey{Kind: kind.ServiceEntry, Name: svcName + invalidNameSuffix, Namespace: nsName},
    		), true},
    		{"mixture unmatched and unmatched config for sidecar", sidecar, sets.New(
    			model.ConfigKey{Kind: kind.DestinationRule, Name: drName + invalidNameSuffix, Namespace: nsName},
    			model.ConfigKey{Kind: kind.ServiceEntry, Name: svcName + invalidNameSuffix, Namespace: nsName},
    		), false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. tests/testdata/config/se-example.yaml

      namespace: seexamples
    spec:
      egress:
      - hosts:
          - seexamples/* # Doesn't work without this - should be default
    
    ---
    # Test workload entry
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: workload
      namespace: seexamples
    spec:
      hosts:
      - test.seexamples
    
      ports:
      - number: 1200
        name: tcplocal
        protocol: TCP
    
      location: MESH_INTERNAL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jun 27 15:20:03 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  9. pilot/pkg/xds/testdata/benchmarks/virtualservice.yaml

    # Set up a Service associated with our proxy, which will run as 1.1.1.1 IP
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: proxy-service-instance
    spec:
      hosts:
      - example.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: STATIC
      endpoints:
      - address: 1.1.1.1
    ---
    # Set up .Services VirtualServices, each pointing to a different Service
    {{- range $i := until .Services }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 01 15:55:05 UTC 2020
    - 1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/util.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package serviceentry
    
    import (
    	"k8s.io/apimachinery/pkg/types"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/labels"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top