Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,118 for Configs (0.22 sec)

  1. tests/integration/security/ca_custom_root/main_test.go

    				Configs: echo.ConfigFuture(&customConfig),
    			}
    			err := addDefaultConfig(ctx, config, &customConfig)
    			if err != nil {
    				return err
    			}
    			return nil
    		}).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{
    			Namespaces: []namespace.Getter{
    				namespace.Future(&echo1NS),
    			},
    			Configs: echo.ConfigFuture(&customConfig),
    		})).
    		Setup(func(ctx resource.Context) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/networkfilter_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			var configs []*config.Config
    			if tt.destRule != nil {
    				destinationRuleConfig := config.Config{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.DestinationRule,
    						Name:             "tcp-idle-timeout",
    						Namespace:        "not-default",
    					},
    					Spec: tt.destRule,
    				}
    				configs = append(configs, &destinationRuleConfig)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/kube.go

    		return i, err
    	}
    
    	// Update config clusters now that external istiod is running.
    	for _, c := range ctx.Clusters().Configs().Remotes() {
    		if err = i.reinstallConfigCluster(c); err != nil {
    			return i, err
    		}
    	}
    
    	// Install (non-config) remote clusters.
    	errG = multierror.Group{}
    	for _, c := range ctx.Clusters().Remotes(ctx.Clusters().Configs()...) {
    		c := c
    		errG.Go(func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/configmap.go

    	if !exists {
    		return "", fmt.Errorf("missing ConfigMap config key %q", configKey)
    	}
    	return configYaml, nil
    }
    
    func injectConfigToYaml(config *inject.Config) (string, error) {
    	bres, err := yaml.Marshal(config)
    	return string(bres), err
    }
    
    func yamlToInjectConfig(configYaml string) (*inject.Config, error) {
    	// Parse the YAML.
    	c, err := inject.UnmarshalConfig([]byte(configYaml))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar.go

    	sc.destinationRulesByNames = make(map[types.NamespacedName]*config.Config)
    	for _, c := range configs {
    		c := c
    		sc.destinationRulesByNames[types.NamespacedName{Name: c.Name, Namespace: c.Namespace}] = &c
    	}
    }
    
    func (sc *SidecarScope) DestinationRuleByName(name, namespace string) *config.Config {
    	if sc == nil {
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/compare/comparator.go

    	for _, resp := range istiodResponses {
    		if len(resp.Resources) > 0 {
    			c.istiod = &configdump.Wrapper{
    				ConfigDump: &admin.ConfigDump{
    					Configs: resp.Resources,
    				},
    			}
    			break
    		}
    	}
    	if c.istiod == nil {
    		return nil, fmt.Errorf("unable to find config dump in Istiod responses")
    	}
    	envoyDump := &configdump.Wrapper{}
    	err := json.Unmarshal(envoyResponse, envoyDump)
    	if err != nil {
    		return nil, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/output/types.go

    	// NOTE: As of today, this is the only version supported by kubeadm.
    	PreferredVersion string
    
    	// ManualUpgradeRequired indicates if users need to manually upgrade their component config versions. This happens if
    	// the CurrentVersion of the config is user supplied (or modified) and no longer supported. Users should upgrade
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. src/crypto/tls/bogo_config.json

            "TLS-ECH-Client-NoSupportedConfigs": "We don't support fallback to cleartext when there are no valid ECH configs",
            "TLS-ECH-Client-SkipInvalidPublicName": "We don't support fallback to cleartext when there are no valid ECH configs",
    
    
            "*ECH-Server*": "no ECH server support",
            "SendV2ClientHello*": "We don't support SSLv2",
            "*QUIC*": "No QUIC support",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. cmd/bucket-quota.go

    			internalLogIf(GlobalContext, errors.New("Detected older 'fifo' quota config, 'fifo' feature is removed and not supported anymore. Please clear your quota configs using 'mc admin bucket quota alias/bucket --clear' and use 'mc ilm add' for expiration of objects"), logger.WarningKind)
    			return quotaCfg, fmt.Errorf("invalid quota type 'fifo'")
    		}
    		return quotaCfg, fmt.Errorf("Invalid quota config %#v", quotaCfg)
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. 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)
Back to top