Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 642 for configmaps (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. api/discovery/api__v1.json

          ],
          "singularName": "componentstatus",
          "verbs": [
            "get",
            "list"
          ]
        },
        {
          "kind": "ConfigMap",
          "name": "configmaps",
          "namespaced": true,
          "shortNames": [
            "cm"
          ],
          "singularName": "configmap",
          "storageVersionHash": "qFsyl6wFWjQ=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/kubelet/config.go

    	if err != nil {
    		return err
    	}
    
    	configMap := &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      configMapName,
    			Namespace: metav1.NamespaceSystem,
    		},
    		Data: map[string]string{
    			kubeadmconstants.KubeletBaseConfigurationConfigMapKey: string(kubeletBytes),
    		},
    	}
    
    	if !kubeletCfg.IsUserSupplied() {
    		componentconfigs.SignConfigMap(configMap)
    	}
    
    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/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    		VolumeSource: v1.VolumeSource{
    			ConfigMap: &v1.ConfigMapVolumeSource{},
    		},
    	}).Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			Secret: &v1.SecretVolumeSource{},
    		},
    	}).Obj()
    	pvcPodWithConfigmapAndSecret = st.MakePod().PVC("pvcWithDeletedPV").Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			ConfigMap: &v1.ConfigMapVolumeSource{},
    		},
    	}).Volume(v1.Volume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/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.7K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/operator/output/operator-init.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.3K bytes
    - Viewed (0)
Back to top