Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 458 for configmap (0.31 sec)

  1. 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)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ConfigMap.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 427 bytes
    - Viewed (0)
  3. 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)
  4. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.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.5K bytes
    - Viewed (0)
  5. 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)
  6. security/pkg/k8s/configutil_test.go

    	client.PrependReactor("get", "configmaps", func(action ktesting.Action) (bool, runtime.Object, error) {
    		return true, &v1.ConfigMap{}, errors.NewNotFound(v1.Resource("configmaps"), configMapName)
    	})
    	client.PrependReactor("create", "configmaps", func(action ktesting.Action) (bool, runtime.Object, error) {
    		return true, &v1.ConfigMap{}, errors.NewUnauthorized("no permission to create configmap")
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. pkg/kubelet/configmap/configmap_manager.go

    )
    
    // Manager interface provides methods for Kubelet to manage ConfigMap.
    type Manager interface {
    	// Get configmap by configmap namespace and name.
    	GetConfigMap(namespace, name string) (*v1.ConfigMap, error)
    
    	// WARNING: Register/UnregisterPod functions should be efficient,
    	// i.e. should not block on network operations.
    
    	// RegisterPod registers all configmaps from a given pod.
    	RegisterPod(pod *v1.Pod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. 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)
  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. pilot/pkg/serviceregistry/kube/controller/namespacecontroller.go

    				nc.namespaceChange(ns)
    			}
    		case <-stop:
    			return
    		}
    	}
    }
    
    // reconcileCACert will reconcile the ca root cert configmap for the specified namespace
    // If the configmap is not found, it will be created.
    // If the namespace is filtered out by discovery selector, the configmap will be deleted.
    func (nc *NamespaceController) reconcileCACert(o types.NamespacedName) error {
    	ns := o.Namespace
    	if ns == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top