Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 797 for configmap3 (1.06 sec)

  1. pkg/kube/krt/informer_test.go

    	assert.Equal(t, ConfigMaps.List(), []*corev1.ConfigMap{cmA2})
    
    	cmt.Create(cmB)
    	tt.WaitOrdered("add/ns/b")
    	assert.Equal(t, slices.SortBy(ConfigMaps.List(), func(a *corev1.ConfigMap) string { return a.Name }), []*corev1.ConfigMap{cmA2, cmB})
    
    	assert.Equal(t, ConfigMaps.GetKey("ns/b"), &cmB)
    	assert.Equal(t, ConfigMaps.GetKey("ns/a"), &cmA2)
    
    	tt2 := assert.NewTracker[string](t)
    	ConfigMaps.Register(TrackerHandler[*corev1.ConfigMap](tt2))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pkg/kubelet/configmap/configmap_manager_test.go

    		if cmaps, ok := existingMaps[ns]; ok {
    			for _, cm := range cmaps {
    				if cm == configMap {
    					return true
    				}
    			}
    		}
    		return false
    	}
    
    	for _, ns := range []string{"ns1", "ns2", "ns3"} {
    		for _, configMap := range []string{"s1", "s2", "s3", "s4", "s5", "s6", "s20", "s40", "s50"} {
    			checkObject(t, store, ns, configMap, shouldExist(ns, configMap))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  3. cluster/addons/calico-policy-controller/typha-horizontal-autoscaler-configmap.yaml

    kind: ConfigMap
    apiVersion: v1
    metadata:
      name: calico-typha-horizontal-autoscaler
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    data:
      ladder: |-
        {
          "coresToReplicas": [],
          "nodesToReplicas":
          [
            [1, 1],
            [10, 2],
            [100, 3],
            [250, 4],
            [500, 5],
            [1000, 6],
            [1500, 7],
            [2000, 8]
          ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 14 15:32:57 UTC 2019
    - 410 bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    		pod.Spec.Volumes = append(pod.Spec.Volumes, corev1.Volume{VolumeSource: corev1.VolumeSource{
    			ConfigMap: &corev1.ConfigMapVolumeSource{LocalObjectReference: corev1.LocalObjectReference{Name: fmt.Sprintf("configmap%d-%s", i, pod.Name)}},
    		}})
    	}
    	// Choose shared configmaps randomly from shared configmaps in a namespace.
    	subset = randomSubset(opts.sharedConfigMapsPerPod, opts.sharedConfigMapsPerNamespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/namespacecontroller.go

    var configMapLabel = map[string]string{"istio.io/config": "true"}
    
    // NamespaceController manages reconciles a configmap in each namespace with a desired set of data.
    type NamespaceController struct {
    	caBundleWatcher *keycertbundle.Watcher
    
    	queue controllers.Queue
    
    	namespaces kclient.Client[*v1.Namespace]
    	configmaps kclient.Client[*v1.ConfigMap]
    
    	ignoredNamespaces sets.Set[string]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. releasenotes/notes/scope-root-ca-configmap.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
       - |
         **Updated** `meshConfig.discoverySelectors` to dynamically restrict the set of namespaces where istiod creates istio-ca-root-cert configmap
         if `ENABLE_ENHANCED_RESOURCE_SCOPING` feature flag is enabled.
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 17 16:44:10 UTC 2022
    - 383 bytes
    - Viewed (0)
  7. cluster/addons/calico-policy-controller/typha-vertical-autoscaler-configmap.yaml

    kind: ConfigMap
    apiVersion: v1
    metadata:
      name: calico-typha-vertical-autoscaler
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    data:
      typha-autoscaler: |-
        {
          "calico-typha": {
            "requests": {
              "cpu": {
                "base": "120m",
                "step": "80m",
                "nodesPerStep": 10,
                "max": "1000m"
              }
            }
          }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 14 15:32:57 UTC 2019
    - 414 bytes
    - Viewed (0)
  8. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

    # This ConfigMap is used to ingest logs against new resources like
    # "k8s_container" and "k8s_node" when $LOGGING_STACKDRIVER_RESOURCE_TYPES is set
    # to "new".
    # When $LOGGING_STACKDRIVER_RESOURCE_TYPES is set to "old", the ConfigMap in
    # fluentd-gcp-configmap-old.yaml will be used for ingesting logs against old
    # resources like "gke_container" and "gce_instance".
    kind: ConfigMap
    apiVersion: v1
    data:
      containers.input.conf: |-
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  9. pkg/controller/bootstrap/bootstrapsigner.go

    		klog.FromContext(ctx).V(3).Info("Error updating ConfigMap", "err", err)
    	}
    }
    
    // getConfigMap gets the ConfigMap we are interested in
    func (e *Signer) getConfigMap() *v1.ConfigMap {
    	configMap, err := e.configMapLister.ConfigMaps(e.configMapNamespace).Get(e.configMapName)
    
    	// If we can't get the configmap just return nil. The resync will eventually
    	// sync things up.
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. pkg/controlplane/controller/legacytokentracking/controller.go

    			return err
    		}
    	} else {
    		configMap := obj.(*corev1.ConfigMap)
    		if _, err = time.Parse(dateFormat, configMap.Data[ConfigMapDataKey]); err != nil {
    			configMap := configMap.DeepCopy()
    			if configMap.Data == nil {
    				configMap.Data = map[string]string{}
    			}
    			configMap.Data[ConfigMapDataKey] = now.UTC().Format(dateFormat)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top