Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 154 for configMaps (0.17 sec)

  1. pkg/test/framework/components/echo/deployment/builder.go

    	}
    
    	out := map[string]sets.String{}
    	for _, c := range b.ctx.Clusters() {
    		out[c.Name()] = sets.New[string]()
    		// TODO find a place to read revision(s) and avoid listing
    		cms, err := c.Kube().CoreV1().ConfigMaps(ns).List(context.TODO(), metav1.ListOptions{})
    		if err != nil {
    			return nil, err
    		}
    
    		// take the intersection of the templates available from each revision in this cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/certs_test.go

    		client := fakeclientset.NewSimpleClientset()
    		client.PrependReactor("get", "configmaps", func(action clientgotesting.Action) (bool, runtime.Object, error) {
    			getAction := action.(clientgotesting.GetAction)
    			if getAction.GetNamespace() == metav1.NamespaceSystem && getAction.GetName() == kubeadmconstants.KubeadmConfigConfigMap {
    				cm := &v1.ConfigMap{
    					ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:26:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. pkg/config/analysis/local/istiod_analyze.go

    }
    
    func (sa *IstiodAnalyzer) addRunningKubeIstioConfigMapSource(client kubelib.Client) error {
    	meshConfigMap, err := client.Kube().CoreV1().ConfigMaps(string(sa.istioNamespace)).Get(context.TODO(), meshConfigMapName, metav1.GetOptions{})
    	if err != nil {
    		return fmt.Errorf("could not read configmap %q from namespace %q: %v", meshConfigMapName, sa.istioNamespace, err)
    	}
    
    	configYaml, ok := meshConfigMap.Data[meshConfigMapKey]
    	if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. pkg/config/schema/collections/collections.gen.go

    		Builtin:       true,
    		ValidateProto: validation.EmptyValidate,
    	}.MustBuild()
    
    	ConfigMap = resource.Builder{
    		Identifier:    "ConfigMap",
    		Group:         "",
    		Kind:          "ConfigMap",
    		Plural:        "configmaps",
    		Version:       "v1",
    		Proto:         "k8s.io.api.core.v1.ConfigMap",
    		ReflectType:   reflect.TypeOf(&k8sioapicorev1.ConfigMap{}).Elem(),
    		ProtoPackage:  "k8s.io/api/core/v1",
    		ClusterScoped: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top