Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for secretNamespace (0.31 sec)

  1. 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)
  2. 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)
  3. CHANGELOG/CHANGELOG-1.8.md

    * Azure file persistent volumes can use a new `secretNamespace` field to reference a secret in a different namespace than the one containing their bound persistent volume claim. The azure file persistent volume provisioner honors a corresponding `secretNamespace` storage class parameter to determine where to place secrets containing the storage account key. ([#47660](https://github.com/kubernetes/kubernetes/pull/47660),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  4. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/api/core/v1/generated.pb.go

    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.SecretNamespace != nil {
    		i -= len(*m.SecretNamespace)
    		copy(dAtA[i:], *m.SecretNamespace)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(*m.SecretNamespace)))
    		i--
    		dAtA[i] = 0x22
    	}
    	i--
    	if m.ReadOnly {
    		dAtA[i] = 1
    	} else {
    		dAtA[i] = 0
    	}
    	i--
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. 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)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "default": "",
                "description": "secretName is the name of secret that contains Azure Storage Account Name and Key",
                "type": "string"
              },
              "secretNamespace": {
                "description": "secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod",
                "type": "string"
              },
              "shareName": {
    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. 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)
  10. api/openapi-spec/v3/api__v1_openapi.json

                "default": "",
                "description": "secretName is the name of secret that contains Azure Storage Account Name and Key",
                "type": "string"
              },
              "secretNamespace": {
                "description": "secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod",
                "type": "string"
              },
              "shareName": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top