Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 255 for configmaps (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/test/framework/components/istio/ca.go

    }
    
    func san(ns, sa string) string {
    	return fmt.Sprintf("spiffe://%s/ns/%s/sa/%s", "cluster.local", ns, sa)
    }
    
    func FetchRootCert(c kubernetes.Interface) (string, error) {
    	cm, err := c.CoreV1().ConfigMaps("istio-system").Get(context.TODO(), "istio-ca-root-cert", metav1.GetOptions{})
    	if err != nil {
    		return "", err
    	}
    	return cm.Data["root-cert.pem"], nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. 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)
  9. pkg/controller/certificates/rootcacertpublisher/publisher_test.go

    		ExistingConfigMaps []*v1.ConfigMap
    		AddedNamespace     *v1.Namespace
    		UpdatedNamespace   *v1.Namespace
    		DeletedConfigMap   *v1.ConfigMap
    		UpdatedConfigMap   *v1.ConfigMap
    		ExpectActions      []action
    	}{
    		"create new namespace": {
    			AddedNamespace: newNs,
    			ExpectActions:  []action{{verb: "create", name: RootCACertConfigMapName}},
    		},
    		"delete other configmap": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:16 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. tests/integration/telemetry/util.go

    	}
    
    	return ""
    }
    
    // GetTrustDomain return trust domain of the cluster.
    func GetTrustDomain(cluster cluster.Cluster, istioNamespace string) string {
    	meshConfigMap, err := cluster.Kube().CoreV1().ConfigMaps(istioNamespace).Get(context.Background(), "istio", metav1.GetOptions{})
    	defaultTrustDomain := mesh.DefaultMeshConfig().TrustDomain
    	if err != nil {
    		return defaultTrustDomain
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top