Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 254 for configmaps (0.39 sec)

  1. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo_test.go

    		createErr error
    		expectErr bool
    	}{
    		{
    			"successful case should have no error",
    			true,
    			nil,
    			false,
    		},
    		{
    			"if configmap already exists, return error",
    			true,
    			apierrors.NewAlreadyExists(schema.GroupResource{Resource: "configmaps"}, "test"),
    			true,
    		},
    		{
    			"unexpected error should be returned",
    			true,
    			apierrors.NewUnauthorized("go away!"),
    			true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/cleanup.go

    	scopes.Framework.Infof("clean up cluster %s", c.Name())
    	errG.Go(func() (err error) {
    		if e := i.installer.Close(c); e != nil {
    			err = multierror.Append(err, e)
    		}
    
    		// Cleanup all secrets and configmaps - these are dynamically created by tests and/or istiod so they are not captured above
    		// This includes things like leader election locks (allowing next test to start without 30s delay),
    		// custom cacerts, custom kubeconfigs, etc.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/operator/output/operator-dump.json

                    "create",
                    "update"
                ]
            },
            {
                "apiGroups": [
                    ""
                ],
                "resources": [
                    "configmaps",
                    "endpoints",
                    "events",
                    "namespaces",
                    "pods",
                    "pods/proxy",
                    "pods/portforward",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 01:35:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. manifests/charts/istio-operator/templates/clusterrole.yaml

      - 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: Tue Apr 02 08:32:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. pkg/registry/core/configmap/storage/storage.go

    		NewListFunc:               func() runtime.Object { return &api.ConfigMapList{} },
    		PredicateFunc:             configmap.Matcher,
    		DefaultQualifiedResource:  api.Resource("configmaps"),
    		SingularQualifiedResource: api.Resource("configmap"),
    
    		CreateStrategy: configmap.Strategy,
    		UpdateStrategy: configmap.Strategy,
    		DeleteStrategy: configmap.Strategy,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 20:38:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/reader-clusterrole.yaml

        verbs: ["create"]
      - apiGroups: ["authorization.k8s.io"]
        resources: ["subjectaccessreviews"]
        verbs: ["create"]
    {{- if .Values.global.externalIstiod }}
      - apiGroups: [""]
        resources: ["configmaps"]
        verbs: ["create", "get", "list", "watch", "update"]
      - apiGroups: ["admissionregistration.k8s.io"]
        resources: ["mutatingwebhookconfigurations"]
        verbs: ["get", "list", "watch", "update", "patch"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pilot/pkg/status/distribution/state.go

    	}
    
    	// configmap informer
    	i := informers.NewSharedInformerFactoryWithOptions(kubernetes.NewForConfigOrDie(restConfig), 1*time.Minute,
    		informers.WithNamespace(namespace),
    		informers.WithTweakListOptions(func(listOptions *metav1.ListOptions) {
    			listOptions.LabelSelector = labels.Set(map[string]string{labelKey: "true"}).AsSelector().String()
    		})).
    		Core().V1().ConfigMaps()
    	c.cmInformer = i.Informer()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/types_encryption.go

    	apiVersion: apiserver.config.k8s.io/v1
    	resources:
    	- resources:
    	  - events
    	  providers:
    	  - identity: {}  # do not encrypt events even though *.* is specified below
    	- resources:
    	  - secrets
    	  - configmaps
    	  - pandas.awesome.bears.example
    	  providers:
    	  - aescbc:
    	      keys:
    	      - name: key1
    	        secret: c2VjcmV0IGlzIHNlY3VyZQ==
    	- resources:
    	  - '*.apps'
    	  providers:
    	  - aescbc:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/reader-clusterrole.yaml

        verbs: ["create"]
      - apiGroups: ["authorization.k8s.io"]
        resources: ["subjectaccessreviews"]
        verbs: ["create"]
    {{- if .Values.global.externalIstiod }}
      - apiGroups: [""]
        resources: ["configmaps"]
        verbs: ["create", "get", "list", "watch", "update"]
      - apiGroups: ["admissionregistration.k8s.io"]
        resources: ["mutatingwebhookconfigurations"]
        verbs: ["get", "list", "watch", "update", "patch"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types_encryption.go

    	apiVersion: apiserver.config.k8s.io/v1
    	resources:
    	- resources:
    	  - events
    	  providers:
    	  - identity: {}  # do not encrypt events even though *.* is specified below
    	- resources:
    	  - secrets
    	  - configmaps
    	  - pandas.awesome.bears.example
    	  providers:
    	  - aescbc:
    	      keys:
    	      - name: key1
    	        secret: c2VjcmV0IGlzIHNlY3VyZQ==
    	- resources:
    	  - '*.apps'
    	  providers:
    	  - aescbc:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top