Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 187 for configVals (0.15 sec)

  1. manifests/charts/istiod-remote/templates/clusterrole.yaml

        verbs: ["get", "list", "watch"]
      - apiGroups: ["networking.k8s.io"]
        resources: ["ingresses/status"]
        verbs: ["*"]
    
      # required for CA's namespace controller
      - apiGroups: [""]
        resources: ["configmaps"]
        verbs: ["create", "get", "list", "watch", "update"]
    
      # Istiod and bootstrap.
    {{- $omitCertProvidersForClusterRole := list "istiod" "custom" "none"}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. api/discovery/api__v1.json

          "shortNames": [
            "cs"
          ],
          "singularName": "componentstatus",
          "verbs": [
            "get",
            "list"
          ]
        },
        {
          "kind": "ConfigMap",
          "name": "configmaps",
          "namespaced": true,
          "shortNames": [
            "cm"
          ],
          "singularName": "configmap",
          "storageVersionHash": "qFsyl6wFWjQ=",
          "verbs": [
            "create",
            "delete",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/interface.go

    	restclient "k8s.io/client-go/rest"
    )
    
    const (
    	LeaderElectionRecordAnnotationKey = "control-plane.alpha.kubernetes.io/leader"
    	EndpointsResourceLock             = "endpoints"
    	ConfigMapsResourceLock            = "configmaps"
    	LeasesResourceLock                = "leases"
    	EndpointsLeasesResourceLock       = "endpointsleases"
    	ConfigMapsLeasesResourceLock      = "configmapsleases"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 6K bytes
    - Viewed (0)
  4. pkg/config/schema/kubeclient/resources.gen.go

    		}
    	case gvr.ConfigMap:
    		l = func(options metav1.ListOptions) (runtime.Object, error) {
    			return c.Kube().CoreV1().ConfigMaps(opts.Namespace).List(context.Background(), options)
    		}
    		w = func(options metav1.ListOptions) (watch.Interface, error) {
    			return c.Kube().CoreV1().ConfigMaps(opts.Namespace).Watch(context.Background(), options)
    		}
    	case gvr.CustomResourceDefinition:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    			ephemeralEnabled:    true,
    			extraClaims:         []v1.PersistentVolumeClaim{*ephemeralClaim},
    			maxVols:             1,
    			test:                "skip Filter when the pod only uses secrets and configmaps",
    			wantPreFilterStatus: framework.NewStatus(framework.Skip),
    		},
    		{
    			newPod:           ephemeralPodWithConfigmapAndSecret,
    			ephemeralEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  6. pkg/registry/core/rest/storage_core_generic.go

    		storage[resource] = serviceAccountStorage
    		if serviceAccountStorage.Token != nil {
    			storage[resource+"/token"] = serviceAccountStorage.Token
    		}
    	}
    
    	if resource := "configmaps"; apiResourceConfigSource.ResourceEnabled(corev1.SchemeGroupVersion.WithResource(resource)) {
    		storage[resource] = configMapStorage
    	}
    
    	if len(storage) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/kubelet/config.go

    			Namespace: metav1.NamespaceSystem,
    		},
    		Rules: []rbac.PolicyRule{
    			{
    				Verbs:         []string{"get"},
    				APIGroups:     []string{""},
    				Resources:     []string{"configmaps"},
    				ResourceNames: []string{kubeadmconstants.KubeletBaseConfigurationConfigMap},
    			},
    		},
    	}); err != nil {
    		return err
    	}
    
    	return apiclient.CreateOrUpdateRoleBinding(client, &rbac.RoleBinding{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/configmap.go

    }
    
    func (cm *configMap) getConfigMap(c cluster.Cluster, name string) (*corev1.ConfigMap, error) {
    	return c.Kube().CoreV1().ConfigMaps(cm.namespace).Get(context.TODO(), name, metav1.GetOptions{})
    }
    
    func (cm *configMap) updateConfigMap(c cluster.Cluster, cfgMap *corev1.ConfigMap) error {
    	_, err := c.Kube().CoreV1().ConfigMaps(cm.namespace).Update(context.TODO(), cfgMap, metav1.UpdateOptions{})
    	if err != nil {
    		return 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)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

        name: system:controller:legacy-service-account-token-cleaner
      rules:
      - apiGroups:
        - ""
        resourceNames:
        - kube-apiserver-legacy-service-account-token-tracking
        resources:
        - configmaps
        verbs:
        - get
      - apiGroups:
        - ""
        resources:
        - secrets
        verbs:
        - delete
        - patch
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/addons/dns/dns.go

    	if err != nil {
    		return errors.Wrap(err, "unable to migrate CoreDNS ConfigMap")
    	}
    
    	// Take a copy of the existing Corefile data as `Corefile-backup` and update the ConfigMap
    	if _, err := client.CoreV1().ConfigMaps(cm.ObjectMeta.Namespace).Update(context.TODO(), &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      kubeadmconstants.CoreDNSConfigMap,
    			Namespace: metav1.NamespaceSystem,
    		},
    		Data: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top