Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "secretRef": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  4. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"secretRef": {
    						SchemaProps: spec.SchemaProps{
    							Description: "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",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  5. api/openapi-spec/swagger.json

              "type": "string"
            },
            "secretRef": {
              "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
              "description": "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"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - `CSINodeExpandSecret` feature has been promoted to `GA` in this release and is enabled
      by default. The CSI drivers can make use of the `secretRef` values passed in `NodeExpansion`
      request optionally sent by the CSI Client from this release onwards. ([#121303](https://github.com/kubernetes/kubernetes/pull/121303), [@humblec](https://github.com/humblec))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top