Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for hostnames (0.14 sec)

  1. pilot/pkg/config/kube/gateway/testdata/isolation.yaml

          protocol: HTTP
          hostname: "*.foo.example.com"
          allowedRoutes:
            namespaces:
              from: All
        - name: abc-foo-example-com
          port: 80
          protocol: HTTP
          hostname: "abc.foo.example.com"
          allowedRoutes:
            namespaces:
              from: All
    ---
    apiVersion: gateway.networking.k8s.io/v1
    kind: HTTPRoute
    metadata:
      name: attaches-to-empty-hostname-with-hostname-intersection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. tests/integration/ambient/testdata/gateway-api.yaml

    spec:
      gatewayClassName: istio
      listeners:
      - name: http
        port: 80
        protocol: HTTP
        hostname: "*.{{ .To.ServiceName }}.com"
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      parentRefs:
      - name: {{ .To.ServiceName }}-gateway
      hostnames:
      - "*.{{ .To.ServiceName }}.com"
      rules:
      - backendRefs:
        - name: "{{ .To.ServiceName }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 574 bytes
    - Viewed (0)
  3. docs/distributed/CONFIG.md

    '--address', '--console-address' and command line arguments for the MinIO server.
    
    Historically everything to MinIO was provided via command arguments for the hostnames and the drives via an ellipses syntax such as `minio server http://host{1...4}/disk{1...4}` this requirement added an additional burden to have sequential hostnames for us to make sure that we can provide horizontal distribution, however we have come across situations where sometimes this is not feasible and there are no easier...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/crd/conversion_test.go

    				},
    				Spec: &gateway.HTTPRouteSpec{
    					Hostnames: []gateway.Hostname{"example.com"},
    				},
    			},
    		},
    		{
    			name: "gateway status",
    			cfg: config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.HTTPRoute,
    					Name:             "test",
    					Namespace:        "default",
    					Domain:           "cluster",
    				},
    				Spec: &gateway.HTTPRouteSpec{
    					Hostnames: []gateway.Hostname{"example.com"},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. pkg/kubelet/certificate/kubelet_test.go

    				{Type: v1.NodeHostName, Address: "hostname-2"},
    				{Type: v1.NodeExternalDNS, Address: "hostname-1"},
    				{Type: v1.NodeInternalDNS, Address: "hostname-3"},
    				{Type: v1.NodeInternalIP, Address: "2.2.2.2"},
    				{Type: v1.NodeExternalIP, Address: "1.1.1.1"},
    				{Type: v1.NodeInternalIP, Address: "3.3.3.3"},
    			},
    			wantDNSNames: []string{"hostname-1", "hostname-2", "hostname-3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:40 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

        }
      }
    
      /** Returns true if [certificate] matches [hostname]. */
      private fun verifyHostname(
        hostname: String,
        certificate: X509Certificate,
      ): Boolean {
        val hostname = hostname.asciiToLowercase()
        return getSubjectAltNames(certificate, ALT_DNS_NAME).any {
          verifyHostname(hostname, it)
        }
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. cmd/listen-notification-handlers.go

    	// Use buffered channel to take care of burst sends or slow w.Write()
    	mergeCh := make(chan []byte, globalAPIConfig.getRequestsPoolCapacity()*len(globalEndpoints.Hostnames()))
    	localCh := make(chan event.Event, globalAPIConfig.getRequestsPoolCapacity())
    
    	// Convert local messages to JSON and send to mergeCh
    	go func() {
    		buf := bytes.NewBuffer(grid.GetByteBuffer()[:0])
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

    {{- if $.VM.IstioHost }}
          # Override the istiod host to force traffic through east-west gateway.
          hostAliases:
          - ip: {{ $.VM.IstioIP }}
            hostnames:
            - {{ $.VM.IstioHost }}
    {{- end }}
          # Disable service account mount, to mirror VM
          automountServiceAccountToken: false
          {{- if $.ImagePullSecretName }}
          imagePullSecrets:
          - name: {{ $.ImagePullSecretName }}
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. src/net/http/servemux121.go

    type serveMux121 struct {
    	mu    sync.RWMutex
    	m     map[string]muxEntry
    	es    []muxEntry // slice of entries sorted from longest to shortest.
    	hosts bool       // whether any patterns contain hostnames
    }
    
    type muxEntry struct {
    	h       Handler
    	pattern string
    }
    
    // Formerly ServeMux.Handle.
    func (mux *serveMux121) handle(pattern string, handler Handler) {
    	mux.mu.Lock()
    	defer mux.mu.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/conversion.go

    				if len(ingress.IP) > 0 {
    					lbAddrs = append(lbAddrs, ingress.IP)
    				} else if len(ingress.Hostname) > 0 {
    					// DO NOT resolve the DNS here. In environments like AWS, the ELB hostname
    					// does not have a repeatable DNS address and IPs resolved at an earlier point
    					// in time may not work. So, when we get just hostnames instead of IPs, we need
    					// to smartly switch from EDS to strict_dns rather than doing the naive thing of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top