Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for PROPERTY (0.56 sec)

  1. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional LocalObjectReference secretRef = 5;
    }
    
    // Sysctl defines a kernel parameter to be set
    message Sysctl {
      // Name of a property to set
      optional string name = 1;
    
      // Value of a property to set
      optional string value = 2;
    }
    
    // TCPSocketAction describes an action based on opening a socket
    message TCPSocketAction {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_StorageOSVolumeSource
    }
    
    var map_Sysctl = map[string]string{
    	"":      "Sysctl defines a kernel parameter to be set",
    	"name":  "Name of a property to set",
    	"value": "Value of a property to set",
    }
    
    func (Sysctl) SwaggerDoc() map[string]string {
    	return map_Sysctl
    }
    
    var map_TCPSocketAction = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional LocalObjectReference secretRef = 5;
    }
    
    // Sysctl defines a kernel parameter to be set
    message Sysctl {
      // Name of a property to set
      optional string name = 1;
    
      // Value of a property to set
      optional string value = 2;
    }
    
    // TCPSocketAction describes an action based on opening a socket
    message TCPSocketAction {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	DefaultHardPodAffinitySymmetricWeight int32 = 1
    )
    
    // Sysctl defines a kernel parameter to be set
    type Sysctl struct {
    	// Name of a property to set
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// Value of a property to set
    	Value string `json:"value" protobuf:"bytes,2,opt,name=value"`
    }
    
    const (
    	// Enable stdin for remote command execution
    	ExecStdinParam = "input"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "name": {
                "default": "",
                "description": "Name of a property to set",
                "type": "string"
              },
              "value": {
                "default": "",
                "description": "Value of a property to set",
                "type": "string"
              }
            },
            "required": [
              "name",
              "value"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    // pod's hosts file.
    type HostAlias struct {
    	IP        string
    	Hostnames []string
    }
    
    // Sysctl defines a kernel parameter to be set
    type Sysctl struct {
    	// Name of a property to set
    	Name string
    	// Value of a property to set
    	Value string
    }
    
    // PodFSGroupChangePolicy holds policies that will be used for applying fsGroup to a volume
    // when volume is mounted.
    type PodFSGroupChangePolicy string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      Terminate, TLS keypair provided \n TLS Profile \n 1. TLSRoute, Port:
                      443, Protocol: TLS, TLS Mode: Passthrough \n \"Distinct\" Listeners
                      have the following property: \n The implementation can match inbound
                      requests to a single distinct Listener. When multiple Listeners
                      share values for fields (for example, two Listeners with the same
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.11.md

    * Exec authenticator plugin supports TLS client certificates. ([#61803](https://github.com/kubernetes/kubernetes/pull/61803), [@awly](https://github.com/awly))
    * The `serverAddressByClientCIDRs` property in `metav1.APIGroup`(discovery API) is now optional instead of required. ([#61963](https://github.com/kubernetes/kubernetes/pull/61963), [@roycaihw](https://github.com/roycaihw))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "readOnly": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.22.md

    - Corrected the documentation for escaping dollar signs in a container's env, command and args property. ([#101916](https://github.com/kubernetes/kubernetes/pull/101916), [@MartinKanters](https://github.com/MartinKanters)) [SIG Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
Back to top