Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for SecretNamespace (1.63 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/azurefilepersistentvolumesource.go

    	SecretName      *string `json:"secretName,omitempty"`
    	ShareName       *string `json:"shareName,omitempty"`
    	ReadOnly        *bool   `json:"readOnly,omitempty"`
    	SecretNamespace *string `json:"secretNamespace,omitempty"`
    }
    
    // AzureFilePersistentVolumeSourceApplyConfiguration constructs an declarative configuration of the AzureFilePersistentVolumeSource type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  2. pkg/volume/flexvolume/util.go

    			return "", "", nil
    		}
    		secretName := spec.PersistentVolume.Spec.FlexVolume.SecretRef.Name
    		secretNamespace := spec.PersistentVolume.Spec.FlexVolume.SecretRef.Namespace
    		if len(secretNamespace) == 0 {
    			secretNamespace = podNamespace
    		}
    		return secretName, secretNamespace, nil
    	}
    	return "", "", errNotFlexVolume
    }
    
    func getReadOnly(spec *volume.Spec) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 14 13:58:56 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  3. pkg/api/v1/persistentvolume/util.go

    	visitor = skipEmptyNames(visitor)
    	source := &pv.Spec.PersistentVolumeSource
    	switch {
    	case source.AzureFile != nil:
    		if source.AzureFile.SecretNamespace != nil && len(*source.AzureFile.SecretNamespace) > 0 {
    			if len(source.AzureFile.SecretName) > 0 && !visitor(*source.AzureFile.SecretNamespace, source.AzureFile.SecretName, true /* kubeletVisible */) {
    				return false
    			}
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 05 03:36:23 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. pkg/controller/bootstrap/bootstrapsigner.go

    // Signer is a controller that signs a ConfigMap with a set of tokens.
    type Signer struct {
    	client             clientset.Interface
    	configMapKey       string
    	configMapName      string
    	configMapNamespace string
    	secretNamespace    string
    
    	// syncQueue handles synchronizing updates to the ConfigMap.  We'll only ever
    	// have one item (Named <ConfigMapName>) in this queue. We are using it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.yaml

        diskName: diskNameValue
        diskURI: diskURIValue
        fsType: fsTypeValue
        kind: kindValue
        readOnly: true
      azureFile:
        readOnly: true
        secretName: secretNameValue
        secretNamespace: secretNamespaceValue
        shareName: shareNameValue
      capacity:
        capacityKey: "0"
      cephfs:
        monitors:
        - monitorsValue
        path: pathValue
        readOnly: true
        secretFile: secretFileValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolume.yaml

        diskName: diskNameValue
        diskURI: diskURIValue
        fsType: fsTypeValue
        kind: kindValue
        readOnly: true
      azureFile:
        readOnly: true
        secretName: secretNameValue
        secretNamespace: secretNamespaceValue
        shareName: shareNameValue
      capacity:
        capacityKey: "0"
      cephfs:
        monitors:
        - monitorsValue
        path: pathValue
        readOnly: true
        secretFile: secretFileValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.VolumeAttachment.yaml

            diskURI: diskURIValue
            fsType: fsTypeValue
            kind: kindValue
            readOnly: true
          azureFile:
            readOnly: true
            secretName: secretNameValue
            secretNamespace: secretNamespaceValue
            shareName: shareNameValue
          capacity:
            capacityKey: "0"
          cephfs:
            monitors:
            - monitorsValue
            path: pathValue
            readOnly: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.yaml

            diskURI: diskURIValue
            fsType: fsTypeValue
            kind: kindValue
            readOnly: true
          azureFile:
            readOnly: true
            secretName: secretNameValue
            secretNamespace: secretNamespaceValue
            shareName: shareNameValue
          capacity:
            capacityKey: "0"
          cephfs:
            monitors:
            - monitorsValue
            path: pathValue
            readOnly: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top