Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 422 for lmhosts (0.19 sec)

  1. pkg/config/validation/validation.go

    			}
    		}
    
    		// Check for duplicate hosts
    		// Duplicates include literal duplicates as well as wildcard duplicates
    		// E.g., *.foo.com, and *.com are duplicates in the same virtual service
    		if allHostsValid {
    			for i := 0; i < len(virtualService.Hosts); i++ {
    				hostI := host.Name(virtualService.Hosts[i])
    				for j := i + 1; j < len(virtualService.Hosts); j++ {
    					hostJ := host.Name(virtualService.Hosts[j])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

        shortNames:
        - se
        singular: serviceentry
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - 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 MESH_INTERNAL)
          jsonPath: .spec.location
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  3. istioctl/pkg/validate/validate_test.go

    spec:
      exportTo:
      - '.'
      hosts:
      - d
      http:
      - route:
        - destination:
            host: c
            subset: v1`
    	validVirtualService2JSON = `{
    "apiVersion": "networking.istio.io/v1alpha3",
    "kind": "VirtualService",
    "metadata": {
    	"name": "valid-virtual-service2"
    },
    "spec": {
    	"exportTo": [
    	"."
    	],
    	"hosts": [
    	"d"
    	],
    	"http": [
    	{
    		"route": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.Ingress.json

          "servicePort": "servicePortValue",
          "resource": {
            "apiGroup": "apiGroupValue",
            "kind": "kindValue",
            "name": "nameValue"
          }
        },
        "tls": [
          {
            "hosts": [
              "hostsValue"
            ],
            "secretName": "secretNameValue"
          }
        ],
        "rules": [
          {
            "host": "hostValue",
            "http": {
              "paths": [
                {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1beta1.Ingress.json

          "servicePort": "servicePortValue",
          "resource": {
            "apiGroup": "apiGroupValue",
            "kind": "kindValue",
            "name": "nameValue"
          }
        },
        "tls": [
          {
            "hosts": [
              "hostsValue"
            ],
            "secretName": "secretNameValue"
          }
        ],
        "rules": [
          {
            "host": "hostValue",
            "http": {
              "paths": [
                {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1beta1.Ingress.yaml

                kind: kindValue
                name: nameValue
              serviceName: serviceNameValue
              servicePort: servicePortValue
            path: pathValue
            pathType: pathTypeValue
      tls:
      - hosts:
        - hostsValue
        secretName: secretNameValue
    status:
      loadBalancer:
        ingress:
        - hostname: hostnameValue
          ip: ipValue
          ports:
          - error: errorValue
            port: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster.go

    		return nil
    	}
    	return envoyfilter.ApplyClusterMerge(p.pctx, p.efw, c, hosts)
    }
    
    func (p clusterPatcher) conditionallyAppend(l []*cluster.Cluster, hosts []host.Name, clusters ...*cluster.Cluster) []*cluster.Cluster {
    	if !p.hasPatches() {
    		return append(l, clusters...)
    	}
    	for _, c := range clusters {
    		if patched := p.doPatch(hosts, c); patched != nil {
    			l = append(l, patched)
    		}
    	}
    	return l
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. pilot/pkg/config/monitor/monitor_test.go

    		},
    		Spec: &networking.Gateway{
    			Servers: []*networking.Server{
    				{
    					Port: &networking.Port{
    						Number:   80,
    						Protocol: "HTTP",
    						Name:     "http",
    					},
    					Hosts: []string{"*.example.com"},
    				},
    			},
    		},
    	},
    }
    
    var updateConfigSet = []*config.Config{
    	{
    		Meta: config.Meta{
    			Name:             "magic",
    			GroupVersionKind: gvk.Gateway,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. pilot/pkg/model/virtualservice.go

    	// Kubernetes Gateway API semantics support shortnames
    	if UseGatewaySemantics(config.Config{Meta: meta}) {
    		return
    	}
    
    	// resolve top level hosts
    	for i, h := range rule.Hosts {
    		rule.Hosts[i] = string(ResolveShortnameToFQDN(h, meta))
    	}
    	// resolve gateways to bind to
    	for i, g := range rule.Gateways {
    		if g != constants.IstioMeshGateway {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. build/root/Makefile

    #    default built-in spec (system.DefaultSpec) will be used.
    #  IMAGES: For REMOTE=true only.  Comma delimited list of images for creating
    #    remote hosts to run tests against.  Defaults to a recent image.
    #  HOSTS: For REMOTE=true only.  Comma delimited list of running gce hosts to
    #    run tests against.  Defaults to "".
    #  DELETE_INSTANCES: For REMOTE=true only.  Delete any instances created as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top