Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for namespaceconfig (0.57 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. tests/integration/helm/util.go

    		ctx.Fatalf("failed to write iop cr file: %v", err)
    	}
    
    	return overrideValuesFile
    }
    
    var DefaultNamespaceConfig = NewNamespaceConfig()
    
    func NewNamespaceConfig(config ...types.NamespacedName) NamespaceConfig {
    	result := make(nsConfig, len(config))
    	for _, c := range config {
    		result[c.Name] = c.Namespace
    	}
    	return result
    }
    
    type nsConfig map[string]string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. tests/integration/helm/upgrade/util.go

    // override values file to the latest charts in $ISTIO_SRC/manifests
    func upgradeCharts(ctx framework.TestContext, h *helm.Helm, overrideValuesFile string, nsConfig helmtest.NamespaceConfig, isAmbient bool) {
    	execCmd := fmt.Sprintf(
    		"kubectl apply -n %v -f %v",
    		helmtest.IstioNamespace,
    		filepath.Join(helmtest.ManifestsChartPath, helmtest.BaseChart, helmtest.CRDsFolder))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/options_test.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: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. 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