Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SecretRef (0.2 sec)

  1. pkg/api/pod/util_test.go

    						SecretRef: &api.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.ScaleIO.SecretRef"}}}}, {
    				VolumeSource: api.VolumeSource{
    					ISCSI: &api.ISCSIVolumeSource{
    						SecretRef: &api.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.ISCSI.SecretRef"}}}}, {
    				VolumeSource: api.VolumeSource{
    					StorageOS: &api.StorageOSVolumeSource{
    						SecretRef: &api.LocalObjectReference{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "secretRef": {
              "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
              "description": "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"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	failedPullSecrets := []string{}
    
    	for _, secretRef := range pod.Spec.ImagePullSecrets {
    		if len(secretRef.Name) == 0 {
    			// API validation permitted entries with empty names (https://issue.k8s.io/99454#issuecomment-787838112).
    			// Ignore to avoid unnecessary warnings.
    			continue
    		}
    		secret, err := kl.secretManager.GetSecret(pod.Namespace, secretRef.Name)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    			enableServiceLinks: &falseValue,
    			container: &v1.Container{
    				EnvFrom: []v1.EnvFromSource{
    					{
    						SecretRef: &v1.SecretEnvSource{LocalObjectReference: v1.LocalObjectReference{Name: "test-secret"}},
    					},
    					{
    						Prefix:    "p_",
    						SecretRef: &v1.SecretEnvSource{LocalObjectReference: v1.LocalObjectReference{Name: "test-secret"}},
    					},
    				},
    				Env: []v1.EnvVar{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top