Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for SecretRef (0.11 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.yaml

            - monitorsValue
            path: pathValue
            readOnly: true
            secretFile: secretFileValue
            secretRef:
              name: nameValue
              namespace: namespaceValue
            user: userValue
          cinder:
            fsType: fsTypeValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
            volumeID: volumeIDValue
          claimRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.VolumeAttachment.yaml

            - monitorsValue
            path: pathValue
            readOnly: true
            secretFile: secretFileValue
            secretRef:
              name: nameValue
              namespace: namespaceValue
            user: userValue
          cinder:
            fsType: fsTypeValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
            volumeID: volumeIDValue
          claimRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml

            - monitorsValue
            path: pathValue
            readOnly: true
            secretFile: secretFileValue
            secretRef:
              name: nameValue
              namespace: namespaceValue
            user: userValue
          cinder:
            fsType: fsTypeValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
            volumeID: volumeIDValue
          claimRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1alpha1.VolumeAttachment.json

              "chapAuthSession": true,
              "secretRef": {
                "name": "nameValue",
                "namespace": "namespaceValue"
              },
              "initiatorName": "initiatorNameValue"
            },
            "cinder": {
              "volumeID": "volumeIDValue",
              "fsType": "fsTypeValue",
              "readOnly": true,
              "secretRef": {
                "name": "nameValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

            - monitorsValue
            path: pathValue
            readOnly: true
            secretFile: secretFileValue
            secretRef:
              name: nameValue
              namespace: namespaceValue
            user: userValue
          cinder:
            fsType: fsTypeValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
            volumeID: volumeIDValue
          claimRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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)
Back to top