Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 564 for configmaps (0.27 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    	// to ensure that those calls won't get caught by the following
    	// <workload-leader-election> flow-schema.
    	//
    	// TODO(#80289): Get rid of this rule once we get rid of support for
    	//   using endpoints and configmaps objects for leader election.
    	SuggestedFlowSchemaEndpointsController = newFlowSchema(
    		"endpoint-controller", "workload-high", 150,
    		flowcontrol.FlowDistinguisherMethodByUserType,
    		flowcontrol.PolicyRulesWithSubjects{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        - deletecollection
        - patch
        - update
      - apiGroups:
        - ""
        resources:
        - pods/eviction
        verbs:
        - create
      - apiGroups:
        - ""
        resources:
        - configmaps
        - events
        - persistentvolumeclaims
        - replicationcontrollers
        - replicationcontrollers/scale
        - secrets
        - serviceaccounts
        - services
        - services/proxy
        verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    		XDSUpdater:      options.XDSUpdater,
    		Network:         options.LookupNetwork,
    	}
    
    	filter := kclient.Filter{
    		ObjectFilter: options.Client.ObjectFilter(),
    	}
    	ConfigMaps := krt.NewInformerFiltered[*v1.ConfigMap](options.Client, filter, krt.WithName("ConfigMaps"))
    
    	authzPolicies := kclient.NewDelayedInformer[*securityclient.AuthorizationPolicy](options.Client,
    		gvr.AuthorizationPolicy, kubetypes.StandardInformer, filter)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/operator/output/operator-dump.yaml

      - roles
      - rolebindings
      verbs:
      - '*'
    - apiGroups:
      - coordination.k8s.io
      resources:
      - leases
      verbs:
      - get
      - create
      - update
    - apiGroups:
      - ""
      resources:
      - configmaps
      - endpoints
      - events
      - namespaces
      - pods
      - pods/proxy
      - pods/portforward
      - persistentvolumeclaims
      - secrets
      - services
      - serviceaccounts
      - resourcequotas
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. pilot/pkg/leaderelection/leaderelection_test.go

    	watcher := &fakeDefaultWatcher{}
    	_, stop := createElection(t, "pod1", "", watcher, true, client)
    	if err := client.CoreV1().ConfigMaps("ns").Delete(context.TODO(), testLock, metav1.DeleteOptions{}); err != nil {
    		t.Fatal(err)
    	}
    	retry.UntilSuccessOrFail(t, func() error {
    		l, err := client.CoreV1().ConfigMaps("ns").List(context.TODO(), metav1.ListOptions{})
    		if err != nil {
    			return err
    		}
    		if len(l.Items) != 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/injection/injection-image.go

    			gvk.Namespace,
    			gvk.Pod,
    			gvk.ConfigMap,
    			gvk.MeshConfig,
    			gvk.ProxyConfig,
    		},
    	}
    }
    
    // Analyze implements Analyzer.
    func (a *ImageAnalyzer) Analyze(c analysis.Context) {
    	proxyImageMap := make(map[string]string)
    
    	// when multiple injector configmaps exist, we may need to assess them respectively.
    	c.ForEach(gvk.ConfigMap, func(r *resource.Instance) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/sidecarinjector.go

    		if err != nil {
    			return nil, err
    		}
    	} else if s.kubeClient != nil {
    		configMapName := getInjectorConfigMapName(args.Revision)
    		cms := s.kubeClient.Kube().CoreV1().ConfigMaps(args.Namespace)
    		if _, err := cms.Get(context.TODO(), configMapName, metav1.GetOptions{}); err != nil {
    			if errors.IsNotFound(err) {
    				log.Infof("Skipping sidecar injector, template not found")
    				return nil, nil
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 20:39:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/injection/injection.go

    			return true
    		}
    
    		// verify the enableNamespacesByDefault flag in injection configmaps
    		c.ForEach(gvk.ConfigMap, func(r *resource.Instance) bool {
    			injectionCMName := util.GetInjectorConfigMapName(nsRevision)
    			if r.Metadata.FullName.Name.String() == injectionCMName {
    				cm := r.Message.(*v1.ConfigMap)
    				enableNamespacesByDefault = GetEnableNamespacesByDefaultFromInjectedConfigMap(cm)
    				return false
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    		// Needed for imagepullsecrets, rbd/ceph and secret volumes, and secrets in envs
    		// Needed for configmap volume and envs
    		// Use the Node authorization mode to limit a node to get secrets/configmaps referenced by pods bound to itself.
    		rbacv1helpers.NewRule("get", "list", "watch").Groups(legacyGroup).Resources("secrets", "configmaps").RuleOrDie(),
    		// Needed for persistent volumes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubelet/config_test.go

    		return true, nil, nil
    	})
    	client.PrependReactor("create", "rolebindings", func(action core.Action) (bool, runtime.Object, error) {
    		return true, nil, nil
    	})
    	client.PrependReactor("create", "configmaps", func(action core.Action) (bool, runtime.Object, error) {
    		return true, nil, nil
    	})
    
    	internalcfg, err := configutil.DefaultedStaticInitConfiguration()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top