Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 205 for ServiceEntry (0.31 sec)

  1. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    			configStore := createWleConfigStore(client, m.revision, options)
    			kubeController.workloadEntryController = serviceentry.NewWorkloadEntryController(
    				configStore, options.XDSUpdater,
    				m.opts.MeshWatcher,
    				serviceentry.WithClusterID(cluster.ID),
    				serviceentry.WithNetworkIDCb(kubeRegistry.Network))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. 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)
  3. tests/integration/pilot/workloadentry_test.go

            gateway.istio.io/listener-protocol: auto-passthrough
    `
    			// a serviceentry that only includes cluster-local endpoints (avoid automatic cross-cluster discovery)
    			seTmpl := `
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: serviceentry.mesh.global
    spec:
      addresses:
      - 240.240.240.240
      hosts: 
      - serviceentry.mesh.global
      ports:
      - number: 80
        targetPort: 18080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/serviceentry_simulation_test.go

    )
    
    const se = `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: se1
    spec:
      hosts:
      - blah.somedomain
      addresses:
      - %s
      ports:
      - number: 9999
        name: TCP-9999
        protocol: TCP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: se2
    spec:
      hosts:
      - blah.somedomain
      addresses:
      - %s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:06 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/testdata/benchmarks/http.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
      location: MESH_INTERNAL
      endpoints:
      - address: 1.1.1.1
        labels:
          security.istio.io/tlsMode: istio
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 907 bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/crdclient/client_test.go

    		selectedLabels := labels[i%len(labels)]
    		obj := &clientnetworkingv1alpha3.ServiceEntry{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      fmt.Sprintf("test-service-entry-%d", i),
    				Namespace: "test",
    				Labels:    selectedLabels,
    			},
    			Spec: v1alpha3.ServiceEntry{},
    		}
    
    		clienttest.NewWriter[*clientnetworkingv1alpha3.ServiceEntry](t, fake).Create(obj)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/testdata/benchmarks/tcp.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: 7070
        name: tcp
        protocol: TCP
      resolution: STATIC
      location: MESH_INTERNAL
      endpoints:
      - address: 1.1.1.1
        labels:
          security.istio.io/tlsMode: istio
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 908 bytes
    - Viewed (0)
  8. pilot/pkg/xds/testdata/benchmarks/telemetry-api.yaml

        - name: prometheus
      accessLogging:
      - providers:
          - name: envoy-json
    ---
    # 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 15:27:21 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. pilot/pkg/xds/testdata/benchmarks/empty.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: Tue Aug 08 03:45:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    }
    
    func (a *index) serviceEntryServiceBuilder(
    	Waypoints krt.Collection[Waypoint],
    	Namespaces krt.Collection[*v1.Namespace],
    ) krt.TransformationMulti[*networkingclient.ServiceEntry, model.ServiceInfo] {
    	return func(ctx krt.HandlerContext, s *networkingclient.ServiceEntry) []model.ServiceInfo {
    		waypoint := fetchWaypointForService(ctx, Waypoints, Namespaces, s.ObjectMeta)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top