Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 205 for ServiceEntry (0.18 sec)

  1. 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)
  2. 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)
  3. releasenotes/notes/we-memory-leaks.yaml

    releaseNotes:
      - |
        **Fixed** a memory leak when `hostNetwork` pods scale up and down.
      - |
        **Fixed** a memory leak when `WorkloadEntries` change their IP address.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 21 22:28:50 UTC 2023
    - 325 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. tests/testdata/config/rule-default-route-append-headers.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: appendh
      namespace: testns
    spec:
       hosts:
       - appendh.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
    metadata:
      name: appendh-route
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 09 16:11:17 UTC 2020
    - 644 bytes
    - Viewed (0)
  6. pkg/test/framework/components/authz/kubelocal.go

    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: {{ .httpName }}
    spec:
      hosts:
      - "{{ .httpHost }}"
      endpoints:
      - address: "127.0.0.1"
      ports:
      - name: http
        number: {{ .httpPort }}
        protocol: HTTP
      resolution: STATIC
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: {{ .grpcName }}
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  7. releasenotes/notes/46088.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
        **Updated** When using a ServiceEntry with DNS resolution, DNS for multi-network gateways 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:36 UTC 2023
    - 251 bytes
    - Viewed (0)
  8. pilot/pkg/xds/testdata/benchmarks/disabled.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
      - number: 7070
        name: tcp
        protocol: TCP
      - number: 443
        name: https
        protocol: HTTPS
      - number: 9090
        name: auto
        protocol: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 595 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top