Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,347 for config2 (0.19 sec)

  1. pkg/test/framework/components/environment/kube/flags.go

    	if err != nil {
    		return err
    	}
    	configs := []cluster.Config{}
    	if err := yaml.Unmarshal(bytes, &configs); err != nil {
    		return fmt.Errorf("failed to reparse: %v", err)
    	}
    	*c = configs
    	scopes.Framework.Infof("Using topology from test framework config file.")
    	return nil
    }
    
    var _ config.Value = &configsVal{}
    
    // init registers the command-line flags that we can exposed for "go test".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/qos_container_manager_linux.go

    	if burstableMin > 0 {
    		if configs[v1.PodQOSBurstable].ResourceParameters.Unified == nil {
    			configs[v1.PodQOSBurstable].ResourceParameters.Unified = make(map[string]string)
    		}
    		configs[v1.PodQOSBurstable].ResourceParameters.Unified[Cgroup2MemoryMin] = strconv.FormatInt(burstableMin, 10)
    		klog.V(4).InfoS("MemoryQoS config for qos", "qos", v1.PodQOSBurstable, "memoryMin", burstableMin)
    	}
    
    	if guaranteedMin > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/bench_test.go

    		Configs:                configs,
    		KubernetesObjectString: k8sConfig,
    		// Allow debounce to avoid overwhelming with writes
    		DebounceTime:               time.Millisecond * 10,
    		DisableSecretAuthorization: true,
    		MeshConfig:                 m,
    	})
    
    	return s, proxy
    }
    
    var (
    	configCache    = map[ConfigInput][]config.Config{}
    	k8sConfigCache = map[ConfigInput]string{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    			},
    			expectErr: "--encryption-provider-config-automatic-reload must be set with --encryption-provider-config",
    		},
    		{
    			name: "test when EtcdOptions is valid",
    			testOptions: &EtcdOptions{
    				StorageConfig: storagebackend.Config{
    					Type:   "etcd3",
    					Prefix: "/registry",
    					Transport: storagebackend.TransportConfig{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    _____________________________________________________________________
    
    
    The table below shows the current state of component configs as understood by this version of kubeadm.
    Configs that have a "yes" mark in the "MANUAL UPGRADE REQUIRED" column require manual config upgrade or
    resetting to kubeadm defaults before a successful upgrade can be performed. The version to manually
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/builder.go

    		filters = append(filters, configs.http...)
    	}
    	if configs := b.build(b.denyPolicies, rbacpb.RBAC_DENY, false); configs != nil {
    		b.logger.AppendDebugf("built %d HTTP filters for DENY action", len(configs.http))
    		filters = append(filters, configs.http...)
    	}
    	if configs := b.build(b.allowPolicies, rbacpb.RBAC_ALLOW, false); configs != nil {
    		b.logger.AppendDebugf("built %d HTTP filters for ALLOW action", len(configs.http))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/ingress/controller_test.go

    	configCh := make(chan config.Config)
    
    	configHandler := func(_, curr config.Config, event model.Event) {
    		configCh <- curr
    	}
    
    	wait := func() config.Config {
    		select {
    		case x := <-configCh:
    			return x
    		case <-time.After(time.Second * 10):
    			t.Fatalf("timed out waiting for config")
    		}
    		return config.Config{}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 18:34:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/tls.go

    	return gatewayMatch && labelMatch && portMatch && nsMatch
    }
    
    // Select the config pertaining to the service being processed.
    func getConfigsForHost(filterNamespace string, hostname host.Name, configs []config.Config) []config.Config {
    	svcConfigs := make([]config.Config, 0)
    	for _, cfg := range configs {
    		virtualService := cfg.Spec.(*v1alpha3.VirtualService)
    		for _, vsHost := range virtualService.Hosts {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. cmd/bucket-metadata.go

    			}
    			if errors.Is(err, errConfigNotFound) {
    				// legacy file config not found, proceed to look for new metadata.
    				continue
    			}
    
    			return nil, err
    		}
    		configs[legacyFile] = configData
    		b.Created = info.ModTime
    	}
    
    	return configs, nil
    }
    
    func (b *BucketMetadata) convertLegacyConfigs(ctx context.Context, objectAPI ObjectLayer, configs map[string][]byte) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. pilot/test/xds/fake.go

    	"istio.io/istio/pkg/adsc"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/config/schema/gvr"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/keepalive"
    	kubelib "istio.io/istio/pkg/kube"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top