Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for ConfigMapName (0.49 sec)

  1. security/pkg/k8s/configutil_test.go

    			existingConfigMap: createConfigMap(namespaceName, configMapName, map[string]string{}),
    			expectedActions: []ktesting.Action{
    				ktesting.NewUpdateAction(gvr, namespaceName, createConfigMap(namespaceName, configMapName, testData)),
    			},
    			expectedErr: "",
    		},
    		{
    			name:              "existing nop ConfigMap",
    			existingConfigMap: createConfigMap(namespaceName, configMapName, testData),
    			expectedActions:   []ktesting.Action{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner_test.go

    	if label == "" {
    		return &v1.ConfigMap{
    			ObjectMeta: metav1.ObjectMeta{Namespace: metav1.NamespaceSystem, Name: legacytokentracking.ConfigMapName},
    		}
    	}
    	return &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{Namespace: metav1.NamespaceSystem, Name: legacytokentracking.ConfigMapName},
    		Data:       map[string]string{legacytokentracking.ConfigMapDataKey: label},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    			if cast, ok := obj.(*corev1.ConfigMap); ok {
    				return cast.Namespace == configMapNamespace && cast.Name == configMapName
    			}
    			if tombstone, ok := obj.(cache.DeletedFinalStateUnknown); ok {
    				if cast, ok := tombstone.Obj.(*corev1.ConfigMap); ok {
    					return cast.Namespace == configMapNamespace && cast.Name == configMapName
    				}
    			}
    			return true // always return true just in case.  The checks are fairly cheap
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/configmap.go

    	ic.mu.Lock()
    	myic := ic.injectConfig
    	ic.mu.Unlock()
    
    	if myic == nil {
    		c := ic.ctx.AllClusters().Configs()[0]
    
    		cfgMap, err := ic.getConfigMap(c, ic.configMapName())
    		if err != nil {
    			return nil, err
    		}
    
    		// Get the MeshConfig yaml from the config map.
    		icYAML, err := getInjectConfigYaml(cfgMap, "config")
    		if err != nil {
    			return nil, err
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_controller.go

    		listOptions.FieldSelector = fields.OneTermEqualSelector("metadata.name", c.configmapName).String()
    	})
    
    	c.configmapInformer.AddEventHandler(cache.FilteringResourceEventHandler{
    		FilterFunc: func(obj interface{}) bool {
    			if cast, ok := obj.(*corev1.ConfigMap); ok {
    				return cast.Name == c.configmapName && cast.Namespace == c.configmapNamespace
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. istioctl/pkg/precheck/precheck.go

    		configMapName := "istio"
    		if rev := deployment.Labels[label.IoIstioRev.Name]; rev != "default" {
    			configMapName += fmt.Sprintf("-%s", rev)
    		}
    		configMap, err := cli.Kube().CoreV1().ConfigMaps(namespace).Get(context.TODO(), configMapName, metav1.GetOptions{})
    		if err != nil {
    			fmt.Printf("Error getting configmap %s: %v\n", configMapName, err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. pkg/volume/configmap/configmap_test.go

    }
    
    func volumeSpec(volumeName, configMapName string, defaultMode int32) *v1.Volume {
    	return &v1.Volume{
    		Name: volumeName,
    		VolumeSource: v1.VolumeSource{
    			ConfigMap: &v1.ConfigMapVolumeSource{
    				LocalObjectReference: v1.LocalObjectReference{
    					Name: configMapName,
    				},
    				DefaultMode: &defaultMode,
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

              secretName: {{ .secretName | quote }}
              optional: true
          {{- end }}
          {{- range $gateway.configVolumes }}
          - name: {{ .name }}
            configMap:
              name: {{ .configMapName | quote }}
              optional: true
          {{- end }}
          affinity:
    {{ include "nodeaffinity" (dict "global" .Values.global "nodeSelector" $gateway.nodeSelector) | trim | indent 8 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/idempotency.go

    	var lastError error
    	err := wait.PollUntilContextTimeout(context.Background(),
    		apiCallRetryInterval, kubeadmapi.GetActiveTimeouts().KubernetesAPICall.Duration,
    		true, func(_ context.Context) (bool, error) {
    			ctx := context.Background()
    			if _, err := client.CoreV1().ConfigMaps(cm.ObjectMeta.Namespace).Get(ctx, configMapName, metav1.GetOptions{}); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-egress/templates/deployment.yaml

              secretName: {{ .secretName | quote }}
              optional: true
          {{- end }}
          {{- range $gateway.configVolumes }}
          - name: {{ .name }}
            configMap:
              name: {{ .configMapName | quote }}
              optional: true
          {{- end }}
          affinity:
    {{ include "nodeaffinity" (dict "global" .Values.global "nodeSelector" $gateway.nodeSelector) | trim | indent 8 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top