Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 187 for configVals (0.21 sec)

  1. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/configmaplock.go

    	corev1client "k8s.io/client-go/kubernetes/typed/core/v1"
    )
    
    // TODO: This is almost a exact replica of Endpoints lock.
    // going forwards as we self host more and more components
    // and use ConfigMaps as the means to pass that configuration
    // data we will likely move to deprecate the Endpoints lock.
    
    type ConfigMapLock struct {
    	// ConfigMapMeta should contain a Name and a Namespace of a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 4K bytes
    - Viewed (0)
  2. cluster/gce/addons/loadbalancing/cloud-provider-role.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: Role
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      name: gce:cloud-provider
      namespace: kube-system
    rules:
    - apiGroups:
      - ""
      resources:
      - configmaps
      verbs:
      - create
      - get
      - patch
      - update
      - list
      - watch
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 23:02:19 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  3. cluster/addons/rbac/cluster-autoscaler/cluster-autoscaler-rbac.yaml

        verbs: ["get", "list", "watch"]
      # misc access
      - apiGroups: [""]
        resources: ["events"]
        verbs: ["create", "update", "patch"]
      - apiGroups: [""]
        resources: ["configmaps"]
        verbs: ["create"]
      - apiGroups: [""]
        resources: ["configmaps"]
        resourceNames: ["cluster-autoscaler-status"]
        verbs: ["get", "update", "patch", "delete"]
    ---
    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 16:56:45 UTC 2020
    - 2K bytes
    - Viewed (0)
  4. cluster/addons/calico-policy-controller/calico-clusterrole.yaml

      - apiGroups: [""]
        resources:
          - pods
          - nodes
          - namespaces
        verbs:
          - get
      # calico/node checks configmaps for cluster CIDR.
      - apiGroups: [""]
        resources:
          - configmaps
        verbs:
          - get
      - apiGroups: [""]
        resources:
          - endpoints
          - services
        verbs:
          # Used to discover service IPs for advertisement.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 26 02:52:06 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  5. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller_test.go

    	created := false
    
    	for _, action := range client.Actions() {
    		t.Log(dump.Pretty(action))
    		if action.Matches("create", "configmaps") {
    			created = true
    			obj := action.(clienttesting.CreateAction).GetObject().(*corev1.ConfigMap)
    			ret[obj.Name] = obj
    		}
    		if action.Matches("update", "configmaps") {
    			obj := action.(clienttesting.UpdateAction).GetObject().(*corev1.ConfigMap)
    			ret[obj.Name] = obj
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  6. pkg/controlplane/controller/legacytokentracking/controller.go

    	klog.Info("Starting legacy_token_tracking_controller")
    	defer klog.Infof("Shutting down legacy_token_tracking_controller")
    
    	go c.configMapInformer.Run(stopCh)
    	if !cache.WaitForNamedCacheSync("configmaps", stopCh, c.configMapSynced) {
    		return
    	}
    
    	go wait.Until(c.runWorker, time.Second, stopCh)
    
    	c.queue.Add(queueKey)
    
    	<-stopCh
    	klog.Info("Ending legacy_token_tracking_controller")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. pkg/registry/admissionregistration/validatingadmissionpolicybinding/authz_test.go

    					Group:    "",
    					Version:  "v1",
    					Resource: "configmaps",
    				}, nil
    			},
    			expectErr: false,
    		},
    		{
    			name:     "denied",
    			userInfo: &user.DefaultInfo{Groups: []string{user.AllAuthenticated}},
    			auth: func(ctx context.Context, a authorizer.Attributes) (authorized authorizer.Decision, reason string, err error) {
    				if a.GetResource() == "configmaps" {
    					return authorizer.DecisionAllow, "", nil
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. releasenotes/notes/46584.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
    - 46563
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 18 17:57:04 UTC 2023
    - 174 bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/idempotency.go

    			ctx := context.Background()
    			if _, err := client.CoreV1().ConfigMaps(cm.ObjectMeta.Namespace).Create(ctx, cm, metav1.CreateOptions{}); err != nil {
    				if !apierrors.IsAlreadyExists(err) {
    					lastError = errors.Wrap(err, "unable to create ConfigMap")
    					return false, nil
    				}
    				if _, err := client.CoreV1().ConfigMaps(cm.ObjectMeta.Namespace).Update(ctx, cm, metav1.UpdateOptions{}); 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. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo.go

    	"k8s.io/klog/v2"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/apiclient"
    )
    
    const (
    	// BootstrapSignerClusterRoleName sets the name for the ClusterRole that allows access to ConfigMaps in the kube-public ns
    	BootstrapSignerClusterRoleName = "kubeadm:bootstrap-signer-clusterinfo"
    )
    
    // CreateBootstrapConfigMapIfNotExists creates the kube-public ConfigMap if it doesn't exist already
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 3.9K bytes
    - Viewed (0)
Back to top