Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 642 for configmaps (0.16 sec)

  1. tests/integration/operator/switch_cr_test.go

    	}
    	var err error
    	// clean up dynamically created secret and configmaps
    	if e := cs.Kube().CoreV1().Secrets(IstioNamespace).DeleteCollection(
    		context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    		err = multierror.Append(err, e)
    	}
    	if e := cs.Kube().CoreV1().ConfigMaps(IstioNamespace).DeleteCollection(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. 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)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. cmd/kubeadm/app/discovery/file/file.go

    				return false, nil
    			}
    			return true, nil
    		})
    	if err != nil {
    		return nil, errors.Wrapf(lastError, "Abort reading the %s ConfigMap after timeout of %v",
    			bootstrapapi.ConfigMapClusterInfo, discoveryTimeout)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top