Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 251 for config2 (0.44 sec)

  1. pkg/test/framework/components/cluster/config.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package cluster
    
    import (
    	"istio.io/istio/pkg/test/framework/config"
    )
    
    type Config struct {
    	Name               string     `yaml:"clusterName,omitempty"`
    	Network            string     `yaml:"network,omitempty"`
    	HTTPProxy          string     `yaml:"httpProxy,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/config.go

    		return nil, nil, err
    	}
    	if requestHeaderConfig != nil {
    		config.ClusterAuthenticationInfo.RequestHeaderCA = requestHeaderConfig.CAContentProvider
    		config.ClusterAuthenticationInfo.RequestHeaderAllowedNames = requestHeaderConfig.AllowedClientNames
    		config.ClusterAuthenticationInfo.RequestHeaderExtraHeaderPrefixes = requestHeaderConfig.ExtraHeaderPrefixes
    		config.ClusterAuthenticationInfo.RequestHeaderGroupHeaders = requestHeaderConfig.GroupHeaders
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    }
    
    // ConfigForResource is a Config specialized to a particular `schema.GroupResource`
    type ConfigForResource struct {
    	// Config is the resource-independent configuration
    	Config
    
    	// GroupResource is the relevant one
    	GroupResource schema.GroupResource
    }
    
    // ForResource specializes to the given resource
    func (config *Config) ForResource(resource schema.GroupResource) *ConfigForResource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. pkg/test/framework/config.go

    	"istio.io/istio/pkg/test/framework/resource/config"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	"istio.io/istio/pkg/test/framework/resource/config/cleanup"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/file"
    	"istio.io/istio/pkg/test/util/tmpl"
    	"istio.io/istio/pkg/test/util/yml"
    )
    
    var _ config.Factory = &configFactory{}
    
    type configFactory struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. internal/kms/config.go

    		if opts != nil && opts.CADir != "" {
    			rootCAs, err = certs.GetRootCAs(opts.CADir)
    			if err != nil {
    				return nil, err
    			}
    		}
    
    		client, err := kms.NewClient(&kms.Config{
    			Endpoints: endpoints,
    			APIKey:    key,
    			TLS: &tls.Config{
    				MinVersion:         tls.VersionTLS12,
    				ClientSessionCache: tls.NewLRUClientSessionCache(tlsClientSessionCacheSize),
    				RootCAs:            rootCAs,
    			},
    		})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    				"inbound|8081||": {string(serviceAlt.Hostname), string(service.Hostname)},
    			},
    		},
    		{
    			name: "ingress to same port",
    			configs: []config.Config{
    				{
    					Meta: config.Meta{GroupVersionKind: gvk.Sidecar, Namespace: "default", Name: "sidecar"},
    					Spec: &networking.Sidecar{Ingress: []*networking.IstioIngressListener{{
    						Port: &networking.SidecarPort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pkg/test/framework/components/environment/kube/settings.go

    // This capability is needed for backwards compatibility and will likely be removed.
    func replaceKubeconfigs(configs []cluster.Config, kubeconfigs []string) ([]cluster.Config, error) {
    	if len(kubeconfigs) == 0 {
    		return configs, nil
    	}
    	kube := 0
    	out := []cluster.Config{}
    	for _, cfg := range configs {
    		if kube >= len(kubeconfigs) {
    			// not enough to cover all clusters in file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/deployment/builder.go

    	// clusters contains the current set of clusters that subsequent With calls will be applied to,
    	// if the Config passed to With does not explicitly choose a cluster.
    	clusters cluster.Clusters
    
    	// configs contains configurations to be built, expanded per-cluster and grouped by cluster Kind.
    	configs []echo.Config
    	// refs contains the references to assign built Instances to.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. 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)
  10. .bazelrc

    test:rbe_cross_compile_linux_arm64 --config=rbe_cross_compile_base
    
    # RBE cross-compile configs for XLA Linux Aarch64
    build:rbe_cross_compile_linux_arm64_xla --config=cross_compile_linux_arm64_xla
    build:rbe_cross_compile_linux_arm64_xla --config=rbe_cross_compile_base_xla
    test:rbe_cross_compile_linux_arm64_xla --config=rbe_cross_compile_base_xla
    
    # END LINUX AARCH64 CROSS-COMPILE CONFIGS
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top