Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for secretNamespace (0.33 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
    }
    
    // Convert_v1_AzureFilePersistentVolumeSource_To_core_AzureFilePersistentVolumeSource is an autogenerated conversion function.
    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. pkg/apis/core/validation/validation.go

    	}
    	if azure.ShareName == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("shareName"), ""))
    	}
    	if azure.SecretNamespace != nil {
    		if len(*azure.SecretNamespace) == 0 {
    			allErrs = append(allErrs, field.Required(fldPath.Child("secretNamespace"), ""))
    		}
    	}
    	return allErrs
    }
    
    func validateAzureDisk(azure *core.AzureDiskVolumeSource, 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)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,3,opt,name=readOnly"`
    	// secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key
    	// default is the same as the Pod
    	// +optional
    	SecretNamespace *string `json:"secretNamespace" protobuf:"bytes,4,opt,name=secretNamespace"`
    }
    
    // Represents a vSphere volume resource.
    type VsphereVirtualDiskVolumeSource struct {
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"shareName":       "shareName is the azure Share Name",
    	"readOnly":        "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
    	"secretNamespace": "secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod",
    }
    
    func (AzureFilePersistentVolumeSource) SwaggerDoc() 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)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // the ReadOnly setting in VolumeMounts.
      // +optional
      optional bool readOnly = 3;
    
      // secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key
      // default is the same as the Pod
      // +optional
      optional string secretNamespace = 4;
    }
    
    // AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
    message AzureFileVolumeSource {
    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. pkg/apis/core/types.go

    	// the ReadOnly setting in VolumeMounts.
    	// +optional
    	ReadOnly bool
    	// the namespace of the secret that contains Azure Storage Account Name and Key
    	// default is the same as the Pod
    	// +optional
    	SecretNamespace *string
    }
    
    // VsphereVirtualDiskVolumeSource represents a vSphere volume resource.
    type VsphereVirtualDiskVolumeSource struct {
    	// Path that identifies vSphere volume vmdk
    	VolumePath 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)
Back to top