Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 160 for configMaps (0.17 sec)

  1. pkg/apis/core/validation/validation_test.go

    		name   string
    		newCfg core.ConfigMap
    		oldCfg core.ConfigMap
    		valid  bool
    	}{{
    		name:   "valid",
    		newCfg: configMap,
    		oldCfg: configMap,
    		valid:  true,
    	}, {
    		name:   "invalid",
    		newCfg: noVersion,
    		oldCfg: configMap,
    		valid:  false,
    	}, {
    		name:   "mark configmap immutable",
    		oldCfg: configMap,
    		newCfg: immutableConfigMap,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. internal/config/config.go

    	nc := c.Clone()
    
    	for configName, configVals := range nc {
    		for _, helpKV := range HelpSubSysMap[configName] {
    			if helpKV.Sensitive {
    				for name, kvs := range configVals {
    					for i := range kvs {
    						if kvs[i].Key == helpKV.Key && len(kvs[i].Value) > 0 {
    							kvs[i].Value = "*redacted*"
    						}
    					}
    					configVals[name] = kvs
    				}
    			}
    		}
    	}
    
    	return nc
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      repeated string podDNSSearchNamespaces = 43;
    
      // Controls whether the creation of the sidecar injector ConfigMap should be skipped.
      // Defaults to false. When set to true, the sidecar injector ConfigMap will not be created.
      google.protobuf.BoolValue omitSidecarInjectorConfigMap = 38;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/network.go

    	// This is defined by a topology.istio.io/network label on the system namespace.
    	network network.ID
    	// Network name for the registry as specified by the MeshNetworks configmap
    	networkFromMeshConfig network.ID
    	// map of svc fqdn to partially built network gateways; the actual gateways will be built from these into networkGatewaysBySvc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. pkg/volume/util/util.go

    	if path == "" {
    		return "", fmt.Errorf("path is empty %s", reflect.TypeOf(mounter).String())
    	}
    	return path, nil
    }
    
    // UnmountViaEmptyDir delegates the tear down operation for secret, configmap, git_repo and downwardapi
    // to empty_dir
    func UnmountViaEmptyDir(dir string, host volume.VolumeHost, volName string, volSpec volume.Spec, podUID utypes.UID) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/kube.go

    		workDir:              workDir,
    		values:               iop.Spec.Values.Fields,
    		installer:            newInstaller(ctx, workDir),
    		meshConfig:           &meshConfig{configMap: *newConfigMap(ctx, cfg.SystemNamespace, revisions)},
    		injectConfig:         &injectConfig{configMap: *newConfigMap(ctx, cfg.SystemNamespace, revisions)},
    		iopFiles:             iopFiles,
    		ingress:              map[string]map[string]ingress.Instance{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/types.go

    // information. The cluster-wide config is stored in ClusterConfiguration. The InitConfiguration
    // object IS NOT uploaded to the kubeadm-config ConfigMap in the cluster, only the
    // ClusterConfiguration is.
    type InitConfiguration struct {
    	metav1.TypeMeta
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    	// 			VolumeSource: v1.VolumeSource{
    	// 				ConfigMap: &v1.ConfigMapVolumeSource{
    	// 					LocalObjectReference: v1.LocalObjectReference{
    	// 						Name: "config-map"}}}}},
    	// 	},
    	// }
    	// testMainKubelet.configMapManager.RegisterPod(pod)
    	// testMainKubelet.secretManager.RegisterPod(pod)
    	assert.Nil(t, testMainKubelet.configMapManager, "configmap manager should be nil if kubelet is in standalone mode")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ConfigMap) APILifecycleIntroduced() (major, minor int) {
    	return 1, 2
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. pkg/api/testing/unstructured_test.go

    			{Version: "v1", Kind: "Secret"},
    			{Version: "v1", Kind: "SecretList"},
    			{Version: "v1", Kind: "RangeAllocation"},
    			{Version: "v1", Kind: "ConfigMap"},
    			{Version: "v1", Kind: "ConfigMapList"},
    			{Group: "admissionregistration.k8s.io", Version: "v1beta1", Kind: "MutatingWebhookConfiguration"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top