Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for lmhosts (0.23 sec)

  1. pilot/pkg/networking/core/cluster_test.go

    	}
    }
    
    func withClusterLocalHosts(m *meshconfig.MeshConfig, hosts ...string) *meshconfig.MeshConfig { // nolint:interfacer
    	m.ServiceSettings = append(append(make([]*meshconfig.MeshConfig_ServiceSettings, 0), m.ServiceSettings...),
    		&meshconfig.MeshConfig_ServiceSettings{
    			Settings: &meshconfig.MeshConfig_ServiceSettings_Settings{
    				ClusterLocal: true,
    			},
    			Hosts: hosts,
    		})
    	return m
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

        # create the kubelet client cert with the correct groups
        echo '{"CN":"kubelet","names":[{"O":"system:nodes"}],"hosts":[""],"key":{"algo":"rsa","size":2048}}' | "${CFSSL_BIN}" gencert -ca=pki/ca.crt -ca-key=pki/private/ca.key -config=ca-config.json - | "${CFSSLJSON_BIN}" -bare kubelet
        mv "kubelet-key.pem" "pki/private/kubelet.key"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    		{Name: "Class", Type: "string", Description: "The name of the IngressClass resource that should be used for additional configuration"},
    		{Name: "Hosts", Type: "string", Description: "Hosts that incoming requests are matched against before the ingress rule"},
    		{Name: "Address", Type: "string", Description: "Address is a list containing ingress points for the load-balancer"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	// ensure this is kept in sync with internal cadvisor housekeeping.
    	evictionMonitoringPeriod = time.Second * 10
    
    	// The path in containers' filesystems where the hosts file is mounted.
    	linuxEtcHostsPath   = "/etc/hosts"
    	windowsEtcHostsPath = "C:\\Windows\\System32\\drivers\\etc\\hosts"
    
    	// Capacity of the channel for receiving pod lifecycle events. This number
    	// is a bit arbitrary and may be adjusted in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	c.lastMethod = req.Method
    	c.r.setInfiniteReadLimit()
    
    	hosts, haveHost := req.Header["Host"]
    	isH2Upgrade := req.isH2Upgrade()
    	if req.ProtoAtLeast(1, 1) && (!haveHost || len(hosts) == 0) && !isH2Upgrade && req.Method != "CONNECT" {
    		return nil, badRequestError("missing required Host header")
    	}
    	if len(hosts) == 1 && !httpguts.ValidHostHeader(hosts[0]) {
    		return nil, badRequestError("malformed Host header")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "x-kubernetes-patch-merge-key": "name",
              "x-kubernetes-patch-strategy": "merge"
            },
            "hostAliases": {
              "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.",
              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.HostAlias"
              },
              "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                "format": "byte",
                "type": "string",
                "x-kubernetes-list-type": "atomic"
              },
              "group": {
                "description": "Group is the API group name this server hosts",
                "type": "string"
              },
              "groupPriorityMinimum": {
                "default": 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Permissions */
        public static final String LABELS_PERMISSIONS = "{labels.permissions}";
    
        /** The key of the message: Virtual Hosts */
        public static final String LABELS_virtual_hosts = "{labels.virtual_hosts}";
    
        /** The key of the message: Virtual Host */
        public static final String LABELS_virtual_host = "{labels.virtual_host}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers_test.go

    				Ingress: []networking.IngressLoadBalancerIngress{
    					{
    						IP:       "2.3.4.5",
    						Hostname: "localhost.localdomain",
    					},
    				},
    			},
    		},
    	}
    	// Columns: Name, Hosts, Address, Ports, Age
    	expected := []metav1.TableRow{{Cells: []interface{}{"test1", "foo", "*", "2.3.4.5", "80", "10y"}}}
    
    	rows, err := printIngress(&ingress, printers.GenerateOptions{})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top