Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for secretNamespace (0.29 sec)

  1. CHANGELOG/CHANGELOG-1.9.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 Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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