Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 274 for lmhosts (0.38 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    	return map_IngressStatus
    }
    
    var map_IngressTLS = map[string]string{
    	"":           "IngressTLS describes the transport layer security associated with an Ingress.",
    	"hosts":      "hosts is a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    message IngressTLS {
      // hosts is a list of hosts included in the TLS certificate. The values in
      // this list must match the name/s used in the tlsSecret. Defaults to the
      // wildcard host setting for the loadbalancer controller fulfilling this
      // Ingress, if left unspecified.
      // +optional
      repeated string hosts = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. helm/minio/values.yaml

        # nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
        # nginx.ingress.kubernetes.io/whitelist-source-range: 0.0.0.0/0
      path: /
      hosts:
        - minio-example.local
      tls: []
      #  - secretName: chart-example-tls
      #    hosts:
      #      - chart-example.local
    
    consoleService:
      type: ClusterIP
      clusterIP: ~
      port: "9001"
      nodePort: 32001
      loadBalancerIP: ~
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1beta1/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *IngressTLS) DeepCopyInto(out *IngressTLS) {
    	*out = *in
    	if in.Hosts != nil {
    		in, out := &in.Hosts, &out.Hosts
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressTLS.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 23:13:31 UTC 2022
    - 12.4K bytes
    - Viewed (0)
  5. pkg/dns/client/dns_test.go

    			expected:   sets.New("example.localhost."),
    		},
    	}
    
    	nt := d.NameTable()
    	nt = proto.Clone(nt).(*dnsProto.NameTable)
    	d.BuildAlternateHosts(nt, func(althosts map[string]struct{}, ipv4 []netip.Addr, ipv6 []netip.Addr, _ []string) {
    		for host := range althosts {
    			if _, exists := nt.Table[host]; !exists {
    				addresses := make([]string, 0, len(ipv4)+len(ipv6))
    				for _, addr := range ipv4 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. hack/lib/util.sh

    }
    
    # signs a serving certificate: args are sudo, dest-dir, ca, filename (roughly), subject, hosts...
    function kube::util::create_serving_certkey {
        local sudo=$1
        local dest_dir=$2
        local ca=$3
        local id=$4
        local cn=${5:-$4}
        local hosts=""
        local SEP=""
        shift 5
        while [ -n "${1:-}" ]; do
            hosts+="${SEP}\"$1\""
            SEP=","
            shift 1
        done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  7. cmd/peer-rest-client.go

    	if !globalIsDistErasure {
    		// Only useful in distributed setups
    		return nil, nil
    	}
    
    	hosts := endpoints.hostsSorted()
    	remote = make([]*peerRESTClient, 0, len(hosts))
    	all = make([]*peerRESTClient, len(hosts))
    	for i, host := range hosts {
    		if host == nil {
    			continue
    		}
    		all[i] = newPeerRESTClient(host, endpoints.FindGridHostsFromPeer(host))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. README.md

    ### ufw
    
    For hosts with ufw enabled (Debian based distros), you can use `ufw` command to allow traffic to specific ports. Use below command to allow access to port 9000
    
    ```sh
    ufw allow 9000
    ```
    
    Below command enables all incoming traffic to ports ranging from 9000 to 9010.
    
    ```sh
    ufw allow 9000:9010/tcp
    ```
    
    ### firewall-cmd
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. cmd/testdata/xl-meta-merge.zip

    platform blocks the port by default, you may need to enable access to the port. ### ufw For hosts with ufw enabled (Debian based distros), you can use `ufw` command to allow traffic to specific ports. Use below command to allow access to port 9000 ```sh ufw allow 9000 ``` Below command enables all incoming traffic to ports ranging from 9000 to 9010. ```sh ufw allow 9000:9010/tcp ``` ### firewall-cmd For hosts with firewall-cmd enabled (CentOS), you can use `firewall-cmd` command to allow traffic to...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. helm-releases/minio-2.0.1.tgz

    .Values.consoleIngress.annotations }} annotations: {{ toYaml . | indent 4 }} {{- end }} spec: {{- if .Values.consoleIngress.tls }} tls: {{- range .Values.consoleIngress.tls }} - hosts: {{- range .hosts }} - {{ . | quote }} {{- end }} secretName: {{ .secretName }} {{- end }} {{- end }} rules: {{- range .Values.consoleIngress.hosts }} - http: paths: - path: {{ $ingressPath }} backend: serviceName: {{ $fullName }} servicePort: {{ $servicePort }} {{- if . }} host: {{ . | quote }} {{- end }} {{- end }} {{-...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 31 09:09:09 UTC 2021
    - 13.6K bytes
    - Viewed (0)
Back to top