Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 154 for configMaps (0.21 sec)

  1. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    	}
    
    	if configMap != "" {
    		if configMap == "" {
    			configMap = "Corefile"
    		}
    		_, err = client.CoreV1().ConfigMaps(metav1.NamespaceSystem).Create(context.TODO(), &v1.ConfigMap{
    			TypeMeta: metav1.TypeMeta{
    				Kind:       "ConfigMap",
    				APIVersion: "v1",
    			},
    			ObjectMeta: metav1.ObjectMeta{
    				Name: configMap,
    				Labels: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. samples/addons/prometheus.yaml

    rules:
      - apiGroups:
          - ""
        resources:
          - nodes
          - nodes/proxy
          - nodes/metrics
          - services
          - endpoints
          - pods
          - ingresses
          - configmaps
        verbs:
          - get
          - list
          - watch
      - apiGroups:
          - "extensions"
          - "networking.k8s.io"
        resources:
          - ingresses/status
          - ingresses
        verbs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. pkg/config/schema/gvr/resources.gen.go

    	CertificateSigningRequest      = schema.GroupVersionResource{Group: "certificates.k8s.io", Version: "v1", Resource: "certificatesigningrequests"}
    	ConfigMap                      = schema.GroupVersionResource{Group: "", Version: "v1", Resource: "configmaps"}
    	CustomResourceDefinition       = schema.GroupVersionResource{Group: "apiextensions.k8s.io", Version: "v1", Resource: "customresourcedefinitions"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    		ObjectMeta: metav1.ObjectMeta{Name: saRolePrefix + "root-ca-cert-publisher"},
    		Rules: []rbacv1.PolicyRule{
    			rbacv1helpers.NewRule("create", "update").Groups(legacyGroup).Resources("configmaps").RuleOrDie(),
    			eventsRule(),
    		},
    	})
    	if utilfeature.DefaultFeatureGate.Enabled(genericfeatures.ValidatingAdmissionPolicy) {
    		addControllerRole(&controllerRoles, &controllerRoleBindings, rbacv1.ClusterRole{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/dashboard_test.go

    							continue
    						}
    						t.Logf("Verifying %s for cluster %s", d.name, cl.Name())
    						cm, err := cl.Kube().CoreV1().ConfigMaps(ist.Settings().TelemetryNamespace).Get(
    							context.TODO(), d.configmap, metav1.GetOptions{})
    						if err != nil {
    							t.Fatalf("Failed to find dashboard %v: %v", d.configmap, err)
    						}
    
    						config, f := cm.Data[d.name]
    						if !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pkg/config/constants/constants.go

    	// KubeSystemNamespace is the system namespace where we place kubernetes system components.
    	KubeSystemNamespace string = "kube-system"
    
    	// KubePublicNamespace is the namespace where we place kubernetes public info (ConfigMaps).
    	KubePublicNamespace string = "kube-public"
    
    	// KubeNodeLeaseNamespace is the namespace for the lease objects associated with each kubernetes node.
    	KubeNodeLeaseNamespace string = "kube-node-lease"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. pkg/config/schema/metadata.yaml

        version: "v1"
        builtin: true
        proto: "k8s.io.api.core.v1.ServiceSpec"
        protoPackage: "k8s.io/api/core/v1"
    
      - kind: "ConfigMap"
        plural: "configmaps"
        version: "v1"
        builtin: true
        specless: true
        proto: "k8s.io.api.core.v1.ConfigMap"
        protoPackage: "k8s.io/api/core/v1"
    
      - kind: "ServiceAccount"
        plural: "serviceaccounts"
        version: "v1"
        builtin: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. pkg/kubelet/util/manager/watch_based_manager.go

    		//
    		// NOTE: we may potentially not even start the reflector if the object is
    		// already immutable. However, given that:
    		// - we want to also handle the case when object is marked as immutable later
    		// - Secrets and ConfigMaps are periodically fetched by volumemanager anyway
    		// - doing that wouldn't provide visible scalability/performance gain - we
    		//   already have it from here
    		// - doing that would require significant refactoring to reflector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/node/node_authorizer.go

    //  3. If a request is for a secret, configmap, persistent volume, resource claim, or persistent volume claim, reject unless the verb is get, and the requested object is related to the requesting node:
    //     node <- configmap
    //     node <- pod
    //     node <- pod <- secret
    //     node <- pod <- configmap
    //     node <- pod <- pvc
    //     node <- pod <- pvc <- pv
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. pkg/volume/testing/volume_host.go

    func (f *fakeVolumeHost) GetExec(pluginName string) exec.Interface {
    	return f.exec
    }
    
    func (f *fakeVolumeHost) GetConfigMapFunc() func(namespace, name string) (*v1.ConfigMap, error) {
    	return func(namespace, name string) (*v1.ConfigMap, error) {
    		return f.kubeClient.CoreV1().ConfigMaps(namespace).Get(context.TODO(), name, metav1.GetOptions{})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top