Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 187 for configVals (0.16 sec)

  1. pkg/controller/certificates/rootcacertpublisher/publisher_test.go

    			client := fake.NewSimpleClientset(caConfigMap, existNS)
    			informers := informers.NewSharedInformerFactory(fake.NewSimpleClientset(), controller.NoResyncPeriodFunc())
    			cmInformer := informers.Core().V1().ConfigMaps()
    			nsInformer := informers.Core().V1().Namespaces()
    			controller, err := NewPublisher(cmInformer, nsInformer, client, fakeRootCA)
    			if err != nil {
    				t.Fatalf("error creating ServiceAccounts controller: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:16 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/discovery/file/file.go

    	var lastError error
    	err = wait.PollUntilContextTimeout(context.Background(),
    		constants.DiscoveryRetryInterval, discoveryTimeout,
    		true, func(_ context.Context) (bool, error) {
    			clusterinfoCM, lastError = client.CoreV1().ConfigMaps(metav1.NamespacePublic).Get(context.TODO(), bootstrapapi.ConfigMapClusterInfo, metav1.GetOptions{})
    			if lastError != nil {
    				if apierrors.IsForbidden(lastError) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. tests/integration/security/util/cert/cert.go

    		// resources from a previous integration test, but sometimes
    		// the resources from a previous integration test are not deleted.
    		configMapName := "istio-ca-root-cert"
    		err = cluster.Kube().CoreV1().ConfigMaps(systemNs.Name()).Delete(context.TODO(), configMapName,
    			metav1.DeleteOptions{})
    		if err == nil {
    			log.Infof("configmap %v is deleted", configMapName)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. istioctl/pkg/workload/workload.go

    func createCertsTokens(kubeClient kube.CLIClient, wg *clientv1alpha3.WorkloadGroup, dir string, out io.Writer) error {
    	rootCert, err := kubeClient.Kube().CoreV1().ConfigMaps(wg.Namespace).Get(context.Background(), controller.CACertNamespaceConfigMap, metav1.GetOptions{})
    	// errors if the requested configmap does not exist in the given namespace
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. istioctl/pkg/precheck/precheck.go

    		configMapName := "istio"
    		if rev := deployment.Labels[label.IoIstioRev.Name]; rev != "default" {
    			configMapName += fmt.Sprintf("-%s", rev)
    		}
    		configMap, err := cli.Kube().CoreV1().ConfigMaps(namespace).Get(context.TODO(), configMapName, metav1.GetOptions{})
    		if err != nil {
    			fmt.Printf("Error getting configmap %s: %v\n", configMapName, err)
    		}
    		meshData := make(map[string]interface{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. samples/addons/kiali.yaml

        version: "v1.85.0"
        app.kubernetes.io/version: "v1.85.0"
        app.kubernetes.io/managed-by: Helm
        app.kubernetes.io/part-of: "kiali"
    rules:
    - apiGroups: [""]
      resources:
      - configmaps
      - endpoints
      - pods/log
      verbs:
      - get
      - list
      - watch
    - apiGroups: [""]
      resources:
      - namespaces
      - pods
      - replicationcontrollers
      - services
      verbs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. tests/integration/security/ca_custom_root/secure_naming_test.go

    }
    
    func checkCACert(t framework.TestContext, testNamespace namespace.Instance) error {
    	configMapName := "istio-ca-root-cert"
    	cm, err := t.Clusters().Default().Kube().CoreV1().ConfigMaps(testNamespace.Name()).Get(context.TODO(), configMapName,
    		metav1.GetOptions{})
    	if err != nil {
    		return err
    	}
    	var certData string
    	var pluginCert []byte
    	var ok bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    			Namespace: metav1.NamespaceSystem,
    		},
    		Rules: []rbac.PolicyRule{
    			{
    				Verbs:         []string{"get"},
    				APIGroups:     []string{""},
    				Resources:     []string{"configmaps"},
    				ResourceNames: []string{constants.KubeProxyConfigMap},
    			},
    		},
    	}
    
    	rb := &rbac.RoleBinding{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      KubeProxyConfigMapRoleName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    		// requests in storage layer so their width should be 1.
    		// Example of such list requests:
    		// /apis/certificates.k8s.io/v1/certificatesigningrequests?fieldSelector=metadata.name%3Dcsr-xxs4m
    		// /api/v1/namespaces/test/configmaps?fieldSelector=metadata.name%3Dbig-deployment-1&limit=500&resourceVersion=0
    		return WorkEstimate{InitialSeats: minSeats}
    	}
    
    	query := r.URL.Query()
    	listOptions := metav1.ListOptions{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    type builtinIndexes map[string]string
    
    func getBuiltinIndexes() builtinIndexes {
    	// The only existing indexes as of now are:
    	// - spec.nodeName for pods
    	// - metadata.Name for nodes, secrets and configmaps
    	// However, we can ignore the latter, because the requestInfo.Name
    	// is set for them (i.e. we already catch them correctly).
    	return map[string]string{
    		"pods": "spec.nodeName",
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top