Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for lmhosts (0.5 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.SecretName)))
    	i--
    	dAtA[i] = 0x12
    	if len(m.Hosts) > 0 {
    		for iNdEx := len(m.Hosts) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Hosts[iNdEx])
    			copy(dAtA[i:], m.Hosts[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Hosts[iNdEx])))
    			i--
    			dAtA[i] = 0xa
    		}
    	}
    	return len(dAtA) - i, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    const (
    	// can be mounted read/write mode to exactly 1 host
    	ReadWriteOnce PersistentVolumeAccessMode = "ReadWriteOnce"
    	// can be mounted in read-only mode to many hosts
    	ReadOnlyMany PersistentVolumeAccessMode = "ReadOnlyMany"
    	// can be mounted in read/write mode to many hosts
    	ReadWriteMany PersistentVolumeAccessMode = "ReadWriteMany"
    	// can be mounted read/write mode to exactly 1 pod
    	// cannot be used in combination with other access modes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    const (
    	// can be mounted in read/write mode to exactly 1 host
    	ReadWriteOnce PersistentVolumeAccessMode = "ReadWriteOnce"
    	// can be mounted in read-only mode to many hosts
    	ReadOnlyMany PersistentVolumeAccessMode = "ReadOnlyMany"
    	// can be mounted in read/write mode to many hosts
    	ReadWriteMany PersistentVolumeAccessMode = "ReadWriteMany"
    	// can be mounted in read/write mode to exactly 1 pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      optional string schedulerName = 19;
    
      // If specified, the pod's tolerations.
      // +optional
      repeated Toleration tolerations = 22;
    
      // 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.
      // +optional
      // +patchMergeKey=ip
      // +patchStrategy=merge
      repeated HostAlias hostAliases = 23;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"tolerations":                   "If specified, the pod's tolerations.",
    	"hostAliases":                   "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // If specified, the pod's tolerations.
      // +optional
      // +listType=atomic
      repeated Toleration tolerations = 22;
    
      // HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts
      // file if specified.
      // +optional
      // +patchMergeKey=ip
      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=ip
      repeated HostAlias hostAliases = 23;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.7.md

      * A new field hostAliases has been added to the pod spec to support [adding entries to a Pod's /etc/hosts file](https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/). ([#44641](https://github.com/kubernetes/kubernetes/pull/44641), [@rickypai](https://github.com/rickypai))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

          },
          "io.k8s.api.networking.v1.IngressTLS": {
            "description": "IngressTLS describes the transport layer security associated with an ingress.",
            "properties": {
              "hosts": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.21.md

    - Mitigate CVE-2020-8555 for kube-up using GCE by preventing local loopback folume hosts. ([#97934](https://github.com/kubernetes/kubernetes/pull/97934), [@mattcary](https://github.com/mattcary)) [SIG Cloud Provider and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.23.md

    - Kubeadm: switch the preflight check (called 'Swap') that verifies if swap is enabled on Linux hosts to report a warning instead of an error. This is related to the graduation of the NodeSwap feature gate in the kubelet to Beta and being enabled by default in 1.23 - allows swap support on Linux hosts. In the next release of kubeadm (1.24) the preflight check will be removed, thus we recommend that you stop using it - e.g. via `--ignore-preflight-errors`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top