Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for shareName (0.31 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	out.SecretName = in.SecretName
    	out.ShareName = in.ShareName
    	out.ReadOnly = in.ReadOnly
    	out.SecretNamespace = (*string)(unsafe.Pointer(in.SecretNamespace))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// secretName is the  name of secret that contains Azure Storage Account Name and Key
    	SecretName string `json:"secretName" protobuf:"bytes,1,opt,name=secretName"`
    	// shareName is the azure share Name
    	ShareName string `json:"shareName" protobuf:"bytes,2,opt,name=shareName"`
    	// readOnly defaults to false (read/write). ReadOnly here will force
    	// the ReadOnly setting in VolumeMounts.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

    message AzureFilePersistentVolumeSource {
      // secretName is the name of secret that contains Azure Storage Account Name and Key
      optional string secretName = 1;
    
      // shareName is the azure Share Name
      optional string shareName = 2;
    
      // readOnly defaults to false (read/write). ReadOnly here will force
      // the ReadOnly setting in VolumeMounts.
      // +optional
      optional bool readOnly = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":                "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
    	"secretName":      "secretName is the name of secret that contains Azure Storage Account Name and Key",
    	"shareName":       "shareName is the azure Share Name",
    	"readOnly":        "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    	if azure.SecretName == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("secretName"), ""))
    	}
    	if azure.ShareName == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("shareName"), ""))
    	}
    	return allErrs
    }
    
    func validateAzureFilePV(azure *core.AzureFilePersistentVolumeSource, fldPath *field.Path) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

    message AzureFilePersistentVolumeSource {
      // secretName is the name of secret that contains Azure Storage Account Name and Key
      optional string secretName = 1;
    
      // shareName is the azure Share Name
      optional string shareName = 2;
    
      // readOnly defaults to false (read/write). ReadOnly here will force
      // the ReadOnly setting in VolumeMounts.
      // +optional
      optional bool readOnly = 3;
    
    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. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "type": "string"
              },
              "shareName": {
                "default": "",
                "description": "shareName is the azure Share Name",
                "type": "string"
              }
            },
            "required": [
              "secretName",
              "shareName"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.CSIPersistentVolumeSource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    type AzureFileVolumeSource struct {
    	// the name of secret that contains Azure Storage Account Name and Key
    	SecretName string
    	// Share Name
    	ShareName string
    	// Defaults to false (read/write). ReadOnly here will force
    	// the ReadOnly setting in VolumeMounts.
    	// +optional
    	ReadOnly bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "shareName": {
                "default": "",
                "description": "shareName is the azure share Name",
                "type": "string"
              }
            },
            "required": [
              "secretName",
              "shareName"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.CSIVolumeSource": {
    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