Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 797 for configmap3 (2.23 sec)

  1. pkg/volume/projected/projected.go

    				}
    				configMap = &v1.ConfigMap{
    					ObjectMeta: metav1.ObjectMeta{
    						Namespace: s.pod.Namespace,
    						Name:      source.ConfigMap.Name,
    					},
    				}
    			}
    			configMapPayload, err := configmap.MakePayload(source.ConfigMap.Items, configMap, s.source.DefaultMode, optional)
    			if err != nil {
    				klog.Errorf("Couldn't get configMap payload %v/%v: %v", s.pod.Namespace, source.ConfigMap.Name, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. pkg/registry/core/configmap/strategy_test.go

    limitations under the License.
    */
    
    package configmap
    
    import (
    	"testing"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    func TestConfigMapStrategy(t *testing.T) {
    	ctx := genericapirequest.NewDefaultContext()
    	if !Strategy.NamespaceScoped() {
    		t.Errorf("ConfigMap must be namespace scoped")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Node.yaml

        reason: reasonValue
        status: statusValue
        type: typeValue
      config:
        active:
          configMap:
            kubeletConfigKey: kubeletConfigKeyValue
            name: nameValue
            namespace: namespaceValue
            resourceVersion: resourceVersionValue
            uid: uidValue
        assigned:
          configMap:
            kubeletConfigKey: kubeletConfigKeyValue
            name: nameValue
            namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. releasenotes/notes/41621.yaml

        reported the following error on shutdown: failed to properly clean up distribution report: configmaps 
        "istiod-xxx-yyy-distribution" is forbidden: User "system:serviceaccount:istio-system:istiod" cannot 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 25 16:27:18 UTC 2022
    - 457 bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    		XDSUpdater:      options.XDSUpdater,
    		Network:         options.LookupNetwork,
    	}
    
    	filter := kclient.Filter{
    		ObjectFilter: options.Client.ObjectFilter(),
    	}
    	ConfigMaps := krt.NewInformerFiltered[*v1.ConfigMap](options.Client, filter, krt.WithName("ConfigMaps"))
    
    	authzPolicies := kclient.NewDelayedInformer[*securityclient.AuthorizationPolicy](options.Client,
    		gvr.AuthorizationPolicy, kubetypes.StandardInformer, filter)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Node.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.yaml

        reason: reasonValue
        status: statusValue
        type: typeValue
      config:
        active:
          configMap:
            kubeletConfigKey: kubeletConfigKeyValue
            name: nameValue
            namespace: namespaceValue
            resourceVersion: resourceVersionValue
            uid: uidValue
        assigned:
          configMap:
            kubeletConfigKey: kubeletConfigKeyValue
            name: nameValue
            namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.yaml

        reason: reasonValue
        status: statusValue
        type: typeValue
      config:
        active:
          configMap:
            kubeletConfigKey: kubeletConfigKeyValue
            name: nameValue
            namespace: namespaceValue
            resourceVersion: resourceVersionValue
            uid: uidValue
        assigned:
          configMap:
            kubeletConfigKey: kubeletConfigKeyValue
            name: nameValue
            namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. pkg/kubelet/configmap/fake_manager.go

    limitations under the License.
    */
    
    package configmap
    
    import v1 "k8s.io/api/core/v1"
    
    // fakeManager implements Manager interface for testing purposes.
    // simple operations to apiserver.
    type fakeManager struct {
    }
    
    // NewFakeManager creates empty/fake ConfigMap manager
    func NewFakeManager() Manager {
    	return &fakeManager{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 03 19:07:12 UTC 2019
    - 1K bytes
    - Viewed (0)
  10. pilot/pkg/leaderelection/k8sleaderelection/leaderelection_test.go

    			rl.LeaderElectionRecordAnnotationKey: string(recordBytes),
    		}
    	}
    	switch objectType {
    	case "endpoints":
    		obj = &corev1.Endpoints{ObjectMeta: objectMeta}
    	case "configmaps":
    		obj = &corev1.ConfigMap{ObjectMeta: objectMeta}
    	case "leases":
    		var spec coordinationv1.LeaseSpec
    		if record != nil {
    			spec = rl.LeaderElectionRecordToLeaseSpec(record)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 23 16:39:43 UTC 2023
    - 42.5K bytes
    - Viewed (0)
Back to top