Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for AzureFilePersistentVolumeSource (0.54 sec)

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

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.AzureFilePersistentVolumeSource)(nil), (*core.AzureFilePersistentVolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_AzureFilePersistentVolumeSource_To_core_AzureFilePersistentVolumeSource(a.(*v1.AzureFilePersistentVolumeSource), b.(*core.AzureFilePersistentVolumeSource), scope)
    	}); err != nil {
    		return err
    	}
    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/zz_generated.deepcopy.go

    func (in *AzureFilePersistentVolumeSource) DeepCopy() *AzureFilePersistentVolumeSource {
    	if in == nil {
    		return nil
    	}
    	out := new(AzureFilePersistentVolumeSource)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *AzureFilePersistentVolumeSource) DeepCopy() *AzureFilePersistentVolumeSource {
    	if in == nil {
    		return nil
    	}
    	out := new(AzureFilePersistentVolumeSource)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *AzureFilePersistentVolumeSource) Reset()      { *m = AzureFilePersistentVolumeSource{} }
    func (*AzureFilePersistentVolumeSource) ProtoMessage() {}
    func (*AzureFilePersistentVolumeSource) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{6}
    }
    func (m *AzureFilePersistentVolumeSource) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// Defaults to false (read/write). ReadOnly here will force
    	// the ReadOnly setting in VolumeMounts.
    	// +optional
    	ReadOnly bool
    }
    
    // AzureFilePersistentVolumeSource represents an Azure File Service mount on the host and bind mount to the pod.
    type AzureFilePersistentVolumeSource struct {
    	// the name of secret that contains Azure Storage Account Name and Key
    	SecretName string
    	// Share Name
    	ShareName 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)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      optional string kind = 6;
    }
    
    // AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
    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;
    
    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. staging/src/k8s.io/api/core/v1/types.go

    	// azureFile represents an Azure File Service mount on the host and bind mount to the pod.
    	// +optional
    	AzureFile *AzureFilePersistentVolumeSource `json:"azureFile,omitempty" protobuf:"bytes,13,opt,name=azureFile"`
    	// vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
    	// +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)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"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 {
    	return map_AzureFilePersistentVolumeSource
    }
    
    var map_AzureFileVolumeSource = 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)
  9. pkg/apis/core/validation/validation.go

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

    		"k8s.io/api/core/v1.AzureDiskVolumeSource":                                                              schema_k8sio_api_core_v1_AzureDiskVolumeSource(ref),
    		"k8s.io/api/core/v1.AzureFilePersistentVolumeSource":                                                    schema_k8sio_api_core_v1_AzureFilePersistentVolumeSource(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top