Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 641 for configmaps (0.15 sec)

  1. samples/security/spire/spire-quickstart.yaml

    - apiGroups: [""]
      resources: ["pods"]
      verbs: ["get"]
      # allow access to "get" and "patch" the spire-bundle ConfigMap (for SPIRE
      # agent bootstrapping, see the spire-bundle ConfigMap)
    - apiGroups: [""]
      resources: ["configmaps"]
      resourceNames: ["spire-bundle"]
      verbs: ["get", "patch"]
    
    ---
    # RoleBinding granting the spire-server-role to the SPIRE server
    # service account.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  2. pilot/pkg/leaderelection/leaderelection.go

    	// GatewayDeploymentController controls translating Kubernetes Gateway objects into various derived
    	// resources (Service, Deployment, etc).
    	// Unlike other types which use ConfigMaps, we use a Lease here. This is because:
    	// * Others use configmap for backwards compatibility
    	// * This type is per-revision, so it is higher cost. Leases are cheaper
    	// * Other types use "prioritized leader election", which isn't implemented for Lease
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. tools/bug-report/pkg/content/content.go

    func GetK8sResources(p *Params) (map[string]string, error) {
    	out, err := p.Runner.RunCmd("get --all-namespaces "+
    		"all,nodes,namespaces,jobs,ingresses,endpoints,endpointslices,customresourcedefinitions,configmaps,events,"+
    		"mutatingwebhookconfigurations,validatingwebhookconfigurations,networkpolicies "+
    		"-o yaml", "", p.KubeConfig, p.KubeContext, p.DryRun)
    	return map[string]string{
    		"k8s-resources": out,
    	}, err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. pilot/pkg/status/distribution/reporter.go

    func CreateOrUpdateConfigMap(ctx context.Context, cm *corev1.ConfigMap, client v1.ConfigMapInterface) (res *corev1.ConfigMap, err error) {
    	if res, err = client.Create(ctx, cm, metav1.CreateOptions{}); err != nil {
    		if !kerrors.IsAlreadyExists(err) {
    			scope.Errorf("%v", err)
    			return nil, fmt.Errorf("unable to create ConfigMap: %w", err)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. 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)
  8. pkg/kube/krt/README.md

    For example, a simple `Singleton` example that keeps track of the number of `ConfigMap`s in the cluster:
    
    ```go
    ConfigMapCount := krt.NewSingleton[int](func(ctx krt.HandlerContext) *int {
        cms := krt.Fetch(ctx, ConfigMaps)
        return ptr.Of(len(cms))
    })
    ```
    
    The `Fetch` operation enables querying against other collections.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K 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