Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 241 for SecretRef (0.16 sec)

  1. pkg/volume/iscsi/iscsi.go

    		if spec.Volume.ISCSI.SecretRef != nil {
    			return spec.Volume.ISCSI.SecretRef.Name, defaultSecretNamespace, nil
    		}
    		return "", "", nil
    	} else if spec.PersistentVolume != nil &&
    		spec.PersistentVolume.Spec.ISCSI != nil {
    		secretRef := spec.PersistentVolume.Spec.ISCSI.SecretRef
    		secretNs := defaultSecretNamespace
    		if secretRef != nil {
    			if len(secretRef.Namespace) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_mounter.go

    	nodePublishSecrets = map[string]string{}
    	if secretRef != nil {
    		nodePublishSecrets, err = getCredentialsFromSecret(c.k8s, secretRef)
    		if err != nil {
    			return volumetypes.NewTransientOperationFailure(fmt.Sprintf("fetching NodePublishSecretRef %s/%s failed: %v",
    				secretRef.Namespace, secretRef.Name, err))
    		}
    
    	}
    
    	// Inject pod information into volume_attributes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  3. pkg/apis/core/zz_generated.deepcopy.go

    	*out = *in
    	if in.Monitors != nil {
    		in, out := &in.Monitors, &out.Monitors
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.SecretRef != nil {
    		in, out := &in.SecretRef, &out.SecretRef
    		*out = new(SecretReference)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CephFSPersistentVolumeSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.Monitors != nil {
    		in, out := &in.Monitors, &out.Monitors
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.SecretRef != nil {
    		in, out := &in.SecretRef, &out.SecretRef
    		*out = new(SecretReference)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CephFSPersistentVolumeSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Monitors = *(*[]string)(unsafe.Pointer(&in.Monitors))
    	out.Path = in.Path
    	out.User = in.User
    	out.SecretFile = in.SecretFile
    	out.SecretRef = (*core.SecretReference)(unsafe.Pointer(in.SecretRef))
    	out.ReadOnly = in.ReadOnly
    	return nil
    }
    
    // Convert_v1_CephFSPersistentVolumeSource_To_core_CephFSPersistentVolumeSource 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)
  6. plugin/pkg/admission/serviceaccount/admission_test.go

    	}
    
    	pod2 = &api.Pod{
    		Spec: api.PodSpec{
    			Containers: []api.Container{
    				{
    					Name: "container-1",
    					EnvFrom: []api.EnvFromSource{
    						{
    							SecretRef: &api.SecretEnvSource{
    								LocalObjectReference: api.LocalObjectReference{
    									Name: "foo"}}}},
    				},
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.
    	// More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it
    	// +optional
    	SecretRef *LocalObjectReference `json:"secretRef,omitempty" protobuf:"bytes,5,opt,name=secretRef"`
    	// readOnly is Optional: Defaults to false (read/write). ReadOnly here will force
    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. pkg/kubelet/secret/secret_manager_test.go

    	}
    	for i, secrets := range toAttach.containerEnvSecrets {
    		container := v1.Container{
    			Name: fmt.Sprintf("container-%d", i),
    		}
    		for _, name := range secrets.envFromNames {
    			envFrom := v1.EnvFromSource{
    				SecretRef: &v1.SecretEnvSource{
    					LocalObjectReference: v1.LocalObjectReference{
    						Name: name,
    					},
    				},
    			}
    			container.EnvFrom = append(container.EnvFrom, envFrom)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  9. helm/minio/README.md

    Install the chart, specifying the users you want to create after install:
    
    ```bash
    helm install --set users[0].accessKey=accessKey,users[0].secretKey=secretKey,users[0].policy=none,users[1].accessKey=accessKey2,users[1].secretRef=existingSecret,users[1].secretKey=password,users[1].policy=none minio/minio
    ```
    
    Description of the configuration parameters used above -
    
    - `users[].accessKey` - accessKey of user
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. pkg/volume/iscsi/iscsi_test.go

    							ISCSI: &v1.ISCSIPersistentVolumeSource{
    								TargetPortal: "127.0.0.1:3260",
    								IQN:          "iqn.2014-12.server:storage.target01",
    								FSType:       "ext4",
    								Lun:          0,
    								SecretRef: &v1.SecretReference{
    									Name:      "name",
    									Namespace: "ns",
    								},
    							},
    						},
    					},
    				},
    			},
    			expectedName:  "name",
    			expectedNs:    "ns",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 16.4K bytes
    - Viewed (0)
Back to top