Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 255 for configmaps (0.4 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tests/integration/security/util/cert/cert.go

    				return err
    			}
    		}
    
    		// If there is a configmap storing the CA cert from a previous
    		// integration test, remove it. Ideally, CI should delete all
    		// 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,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    	}
    
    	if printManifest {
    		return configMapBytes, nil
    	}
    
    	kubeproxyConfigMap := &v1.ConfigMap{}
    	if err := kuberuntime.DecodeInto(clientsetscheme.Codecs.UniversalDecoder(), configMapBytes, kubeproxyConfigMap); err != nil {
    		return []byte(""), errors.Wrap(err, "unable to decode kube-proxy configmap")
    	}
    
    	if !kubeProxyCfg.IsUserSupplied() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. 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)
  7. pkg/config/analysis/local/analyze_test.go

    		{
    			name: "istio cm",
    			obj: &v1.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "istio",
    				},
    			},
    			expect: true,
    		},
    		{
    			name: "sidecar cm",
    			obj: &v1.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "istio-sidecar-injector",
    				},
    			},
    			expect: true,
    		},
    		{
    			name: "not istio cm",
    			obj: &v1.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    }
    
    // loadCABundle determines the next set of content for the file.
    func (c *ConfigMapCAController) loadCABundle() error {
    	configMap, err := c.configmapLister.ConfigMaps(c.configmapNamespace).Get(c.configmapName)
    	if err != nil {
    		return err
    	}
    	caBundle := configMap.Data[c.configmapKey]
    	if len(caBundle) == 0 {
    		return fmt.Errorf("missing content for CA bundle %q", c.Name())
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K 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