Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 320 for configmap3 (0.14 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/serviceregistry/kube/controller/namespacecontroller_test.go

    }
    
    func expectConfigMapNotExist(t *testing.T, configmaps kclient.Client[*v1.ConfigMap], ns string) {
    	t.Helper()
    	err := retry.Until(func() bool {
    		cm := configmaps.Get(CACertNamespaceConfigMap, ns)
    		return cm != nil
    	}, retry.Timeout(time.Millisecond*25))
    
    	if err == nil {
    		t.Fatalf("%s namespace should not have istio-ca-root-cert configmap.", ns)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/istiod-injector-configmap.yaml

    {{- if not .Values.global.omitSidecarInjectorConfigMap }}
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: istio-sidecar-injector{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Pilot"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml

    {{- if not .Values.global.omitSidecarInjectorConfigMap }}
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: istio-sidecar-injector{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Pilot"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/configmaplock.go

    	Client        corev1client.ConfigMapsGetter
    	LockConfig    ResourceLockConfig
    	cm            *v1.ConfigMap
    }
    
    // Get returns the election record from a ConfigMap Annotation
    func (cml *ConfigMapLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error) {
    	var record LeaderElectionRecord
    	var err error
    	cml.cm, err = cml.Client.ConfigMaps(cml.ConfigMapMeta.Namespace).Get(ctx, cml.ConfigMapMeta.Name, metav1.GetOptions{})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 4K bytes
    - Viewed (0)
  7. cluster/addons/calico-policy-controller/calico-node-vertical-autoscaler-configmap.yaml

    kind: ConfigMap
    apiVersion: v1
    metadata:
      name: calico-node-vertical-autoscaler
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    data:
      node-autoscaler: |-
        {
          "calico-node": {
            "requests": {
              "cpu": {
                "base": "80m",
                "step": "20m",
                "nodesPerStep": 10,
                "max": "500m"
              }
            }
          }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 14 15:32:57 UTC 2019
    - 409 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo.go

    	BootstrapSignerClusterRoleName = "kubeadm:bootstrap-signer-clusterinfo"
    )
    
    // CreateBootstrapConfigMapIfNotExists creates the kube-public ConfigMap if it doesn't exist already
    func CreateBootstrapConfigMapIfNotExists(client clientset.Interface, file string) error {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/meshconfig.go

    func MeshConfigCollection(ConfigMaps krt.Collection[*v1.ConfigMap], options Options) krt.Singleton[MeshConfig] {
    	cmName := "istio"
    	if options.Revision != "" && options.Revision != "default" {
    		cmName = cmName + "-" + options.Revision
    	}
    	return krt.NewSingleton[MeshConfig](
    		func(ctx krt.HandlerContext) *MeshConfig {
    			meshCfg := mesh.DefaultMeshConfig()
    			cms := []*v1.ConfigMap{}
    			if features.SharedMeshConfig != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. pkg/controller/bootstrap/bootstrapsigner_test.go

    	secrets := informers.Core().V1().Secrets()
    	configMaps := informers.Core().V1().ConfigMaps()
    	bsc, err := NewSigner(cl, secrets, configMaps, options)
    	if err != nil {
    		return nil, nil, nil, nil, err
    	}
    	return bsc, cl, secrets, configMaps, nil
    }
    
    func newConfigMap(tokenID, signature string) *v1.ConfigMap {
    	ret := &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace:       metav1.NamespacePublic,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top