Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for namespaceconfig (0.23 sec)

  1. cmd/kube-controller-manager/app/options/namespacecontroller.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"github.com/spf13/pflag"
    
    	namespaceconfig "k8s.io/kubernetes/pkg/controller/namespace/config"
    )
    
    // NamespaceControllerOptions holds the NamespaceController options.
    type NamespaceControllerOptions struct {
    	*namespaceconfig.NamespaceControllerConfiguration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  2. tests/integration/helm/install_test.go

    func setupInstallation(overrideValuesStr string, isAmbient bool, config NamespaceConfig, revision string) func(t framework.TestContext) {
    	return baseSetup(overrideValuesStr, isAmbient, config, func(t framework.TestContext) {
    		sanitycheck.RunTrafficTest(t, t)
    	}, revision)
    }
    
    func setupInstallationWithCustomCheck(overrideValuesStr string, isAmbient bool, config NamespaceConfig,
    	check func(t framework.TestContext), revision string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. pkg/controller/apis/config/types.go

    	garbagecollectorconfig "k8s.io/kubernetes/pkg/controller/garbagecollector/config"
    	jobconfig "k8s.io/kubernetes/pkg/controller/job/config"
    	namespaceconfig "k8s.io/kubernetes/pkg/controller/namespace/config"
    	nodeipamconfig "k8s.io/kubernetes/pkg/controller/nodeipam/config"
    	nodelifecycleconfig "k8s.io/kubernetes/pkg/controller/nodelifecycle/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/proxy_config.go

    	if p.rootNamespace != "" {
    		effectiveProxyConfig = mergeWithPrecedence(p.mergedGlobalConfig(), effectiveProxyConfig)
    	}
    
    	if meta.Namespace != p.rootNamespace {
    		namespacedConfig := p.mergedNamespaceConfig(meta.Namespace)
    		effectiveProxyConfig = mergeWithPrecedence(namespacedConfig, effectiveProxyConfig)
    	}
    
    	workloadConfig := p.mergedWorkloadConfig(meta.Namespace, meta.Labels)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top