Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for symlinks (0.21 sec)

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

    // Represents a host path mapped into a pod.
    // Host path volumes do not support ownership management or SELinux relabeling.
    message HostPathVolumeSource {
      // path of the directory on the host.
      // If the path is a symlink, it will follow the link to the real path.
      // More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath
      optional string path = 1;
    
      // type for HostPath Volume
      // Defaults to ""
    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. pkg/apis/core/types.go

    )
    
    // HostPathVolumeSource represents a host path mapped into a pod.
    // Host path volumes do not support ownership management or SELinux relabeling.
    type HostPathVolumeSource struct {
    	// If the path is a symlink, it will follow the link to the real path.
    	Path string
    	// Defaults to ""
    	Type *HostPathType
    }
    
    // EmptyDirVolumeSource represents an empty directory for a pod.
    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_swagger_doc_generated.go

    	"":     "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
    	"path": "path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.8.md

    * Fix pods failing to start when subPath is a dangling symlink from kubelet point of view, which can happen if it is running inside a container ([#48555](https://github.com/kubernetes/kubernetes/pull/48555), [@redbaron](https://github.com/redbaron))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

    // Represents a host path mapped into a pod.
    // Host path volumes do not support ownership management or SELinux relabeling.
    message HostPathVolumeSource {
      // path of the directory on the host.
      // If the path is a symlink, it will follow the link to the real path.
      // More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath
      optional string path = 1;
    
      // type for HostPath Volume
      // Defaults to ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - `kube-apiserver` updated:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    // Represents a host path mapped into a pod.
    // Host path volumes do not support ownership management or SELinux relabeling.
    type HostPathVolumeSource struct {
    	// path of the directory on the host.
    	// If the path is a symlink, it will follow the link to the real path.
    	// More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath
    	Path string `json:"path" protobuf:"bytes,1,opt,name=path"`
    	// type for HostPath Volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

            "properties": {
              "path": {
                "default": "",
                "description": "path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
                "type": "string"
              },
              "type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "path": {
                "default": "",
                "description": "path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
                "type": "string"
              },
              "type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top