Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 237 for configMaps (1.19 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// After that, the information in the fields IS NOT uploaded to the `kubeadm-config` ConfigMap
    	// that is used by `kubeadm upgrade` for instance. These fields must be omitempty.
    
    	// BootstrapTokens is respected at `kubeadm init` time and describes a set of Bootstrap Tokens to create.
    	// This information IS NOT uploaded to the kubeadm cluster configmap, partly because of its sensitive nature
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    					VolumeSource: v1.VolumeSource{
    						ConfigMap: &v1.ConfigMapVolumeSource{},
    					},
    				},
    				{
    					VolumeSource: v1.VolumeSource{
    						Secret: &v1.SecretVolumeSource{},
    					},
    				},
    			},
    		},
    	}
    	pvcPodWithConfigmapAndSecret := &v1.Pod{
    		Spec: v1.PodSpec{
    			Volumes: []v1.Volume{
    				{
    					VolumeSource: v1.VolumeSource{
    						ConfigMap: &v1.ConfigMapVolumeSource{},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/deployment.go

    		cm := &corev1.ConfigMap{ObjectMeta: metav1.ObjectMeta{Name: cmName}, BinaryData: cmData}
    		_, err = cfg.Cluster.Kube().CoreV1().ConfigMaps(cfg.Namespace.Name()).Create(context.TODO(), cm, metav1.CreateOptions{})
    		if err != nil && !kerrors.IsAlreadyExists(err) {
    			return fmt.Errorf("failed creating configmap %s: %v", cm.Name, err)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. pkg/api/v1/pod/util_test.go

    						Sources: []v1.VolumeProjection{{
    							ConfigMap: &v1.ConfigMapProjection{
    								LocalObjectReference: v1.LocalObjectReference{
    									Name: "Spec.Volumes[*].VolumeSource.Projected.Sources[*].ConfigMap"}}}}}}}, {
    				VolumeSource: v1.VolumeSource{
    					ConfigMap: &v1.ConfigMapVolumeSource{
    						LocalObjectReference: v1.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.ConfigMap"}}}}},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  5. plugin/pkg/admission/noderestriction/admission.go

    	if hasConfigMaps {
    		return admission.NewForbidden(a, fmt.Errorf("node %q can not create pods that reference configmaps", nodeName))
    	}
    
    	for _, vol := range pod.Spec.Volumes {
    		if vol.VolumeSource.Projected != nil {
    			for _, src := range vol.VolumeSource.Projected.Sources {
    				if src.ClusterTrustBundle != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. pkg/controller/resourcequota/resource_quota_controller_test.go

    			expectedActionSet: sets.NewString("update-resourcequotas-status"),
    			items:             []runtime.Object{},
    		},
    		"quota-missing-status-with-partial-calculation-error": {
    			gvr:      v1.SchemeGroupVersion.WithResource("configmaps"),
    			errorGVR: v1.SchemeGroupVersion.WithResource("pods"),
    			quota: v1.ResourceQuota{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace: "default",
    					Name:      "rq",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  7. pkg/volume/configmap/configmap.go

    			},
    		}
    	}
    
    	totalBytes := totalBytes(configMap)
    	klog.V(3).Infof("Received configMap %v/%v containing (%v) pieces of data, %v total bytes",
    		b.pod.Namespace,
    		b.source.Name,
    		len(configMap.Data)+len(configMap.BinaryData),
    		totalBytes)
    
    	payload, err := MakePayload(b.source.Items, configMap, b.source.DefaultMode, optional)
    	if err != nil {
    		return err
    	}
    
    	setupSuccess := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/graph_test.go

    					{Name: "volume1", VolumeSource: corev1.VolumeSource{ConfigMap: &corev1.ConfigMapVolumeSource{LocalObjectReference: corev1.LocalObjectReference{Name: "cm1"}}}},
    					{Name: "volume2", VolumeSource: corev1.VolumeSource{ConfigMap: &corev1.ConfigMapVolumeSource{LocalObjectReference: corev1.LocalObjectReference{Name: "cm2"}}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

              {{ end }}
              {{- end }}
          volumes:
          {{- if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
          - name: custom-bootstrap-volume
            configMap:
              name: {{ annotation .ObjectMeta `sidecar.istio.io/bootstrapOverride` "" }}
          {{- end }}
          - emptyDir:
              medium: Memory
            name: istio-envoy
          {{- if .Values.global.sds.enabled }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

              {{ end }}
              {{- end }}
          volumes:
          {{- if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
          - name: custom-bootstrap-volume
            configMap:
              name: {{ annotation .ObjectMeta `sidecar.istio.io/bootstrapOverride` "" }}
          {{- end }}
          - emptyDir:
              medium: Memory
            name: istio-envoy
          {{- if .Values.global.sds.enabled }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top