Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for SecretRef (0.14 sec)

  1. pkg/volume/flexvolume/util.go

    		if spec.Volume.FlexVolume.SecretRef == nil {
    			return "", "", nil
    		}
    		return spec.Volume.FlexVolume.SecretRef.Name, podNamespace, nil
    	}
    	if spec.PersistentVolume != nil && spec.PersistentVolume.Spec.FlexVolume != nil {
    		if spec.PersistentVolume.Spec.FlexVolume.SecretRef == nil {
    			return "", "", nil
    		}
    		secretName := spec.PersistentVolume.Spec.FlexVolume.SecretRef.Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 14 13:58:56 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/cephfspersistentvolumesource.go

    	User       *string                            `json:"user,omitempty"`
    	SecretFile *string                            `json:"secretFile,omitempty"`
    	SecretRef  *SecretReferenceApplyConfiguration `json:"secretRef,omitempty"`
    	ReadOnly   *bool                              `json:"readOnly,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/rbdpersistentvolumesource.go

    	RadosUser    *string                            `json:"user,omitempty"`
    	Keyring      *string                            `json:"keyring,omitempty"`
    	SecretRef    *SecretReferenceApplyConfiguration `json:"secretRef,omitempty"`
    	ReadOnly     *bool                              `json:"readOnly,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/cephfsvolumesource.go

    	User       *string                                 `json:"user,omitempty"`
    	SecretFile *string                                 `json:"secretFile,omitempty"`
    	SecretRef  *LocalObjectReferenceApplyConfiguration `json:"secretRef,omitempty"`
    	ReadOnly   *bool                                   `json:"readOnly,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/rbdvolumesource.go

    	RadosUser    *string                                 `json:"user,omitempty"`
    	Keyring      *string                                 `json:"keyring,omitempty"`
    	SecretRef    *LocalObjectReferenceApplyConfiguration `json:"secretRef,omitempty"`
    	ReadOnly     *bool                                   `json:"readOnly,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/scaleiopersistentvolumesource.go

    	Gateway          *string                            `json:"gateway,omitempty"`
    	System           *string                            `json:"system,omitempty"`
    	SecretRef        *SecretReferenceApplyConfiguration `json:"secretRef,omitempty"`
    	SSLEnabled       *bool                              `json:"sslEnabled,omitempty"`
    	ProtectionDomain *string                            `json:"protectionDomain,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/iscsivolumesource.go

    	DiscoveryCHAPAuth *bool                                   `json:"chapAuthDiscovery,omitempty"`
    	SessionCHAPAuth   *bool                                   `json:"chapAuthSession,omitempty"`
    	SecretRef         *LocalObjectReferenceApplyConfiguration `json:"secretRef,omitempty"`
    	InitiatorName     *string                                 `json:"initiatorName,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/iscsipersistentvolumesource.go

    	DiscoveryCHAPAuth *bool                              `json:"chapAuthDiscovery,omitempty"`
    	SessionCHAPAuth   *bool                              `json:"chapAuthSession,omitempty"`
    	SecretRef         *SecretReferenceApplyConfiguration `json:"secretRef,omitempty"`
    	InitiatorName     *string                            `json:"initiatorName,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 7K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_util.go

    func getCredentialsFromSecret(k8s kubernetes.Interface, secretRef *api.SecretReference) (map[string]string, error) {
    	credentials := map[string]string{}
    	secret, err := k8s.CoreV1().Secrets(secretRef.Namespace).Get(context.TODO(), secretRef.Name, meta.GetOptions{})
    	if err != nil {
    		return credentials, errors.New(log("failed to find the secret %s in the namespace %s with error: %v", secretRef.Name, secretRef.Namespace, err))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 17:14:00 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. pkg/api/persistentvolume/util_test.go

    					PersistentVolumeSource: api.PersistentVolumeSource{
    						CephFS: &api.CephFSPersistentVolumeSource{
    							Monitors:   nil,
    							Path:       "",
    							User:       "",
    							SecretFile: "",
    							SecretRef:  nil,
    							ReadOnly:   false,
    						},
    					},
    				},
    			},
    			expected: []string{
    				`spec.cephfs: deprecated in v1.28, non-functional in v1.31+`,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top