Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,118 for Configs (0.15 sec)

  1. cmd/kubeadm/app/cmd/config_test.go

    			var output bytes.Buffer
    
    			command := test.cmdProc(&output)
    			if test.componentConfigs != "" {
    				if err := command.Flags().Set("component-configs", test.componentConfigs); err != nil {
    					t.Fatalf("failed to set component-configs flag")
    				}
    			}
    			if err := command.RunE(nil, nil); err != nil {
    				t.Fatalf("Error from running the print command: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    		}
    		if lp.Operation == networking.EnvoyFilter_Patch_MERGE {
    			// proto merge doesn't work well when merging two filters with ANY typed configs
    			// especially when the incoming cp.Value is a struct that could contain the json config
    			// of an ANY typed filter. So convert our filter's typed config to Struct (retaining the any
    			// typed output of json)
    			if filter.GetTypedConfig() == nil {
    				// TODO(rshriram): fixme
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. istioctl/pkg/authz/analyzer_test.go

    	tests := []struct {
    		name    string
    		input   *configdump.Wrapper
    		wantErr error
    	}{
    		{
    			name: "Test1",
    			input: &configdump.Wrapper{
    				ConfigDump: &envoy_admin.ConfigDump{
    					Configs: []*anypb.Any{
    						{
    							TypeUrl: "type.googleapis.com/envoy.admin.v3.ListenersConfigDump",
    						},
    					},
    				},
    			},
    			wantErr: nil,
    		},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. pkg/xds/monitoring.go

    	)
    
    	// pilot_total_xds_rejects should be used instead. This is for backwards compatibility
    	cdsReject = monitoring.NewGauge(
    		"pilot_xds_cds_reject",
    		"Pilot rejected CDS configs.",
    	)
    
    	// pilot_total_xds_rejects should be used instead. This is for backwards compatibility
    	edsReject = monitoring.NewGauge(
    		"pilot_xds_eds_reject",
    		"Pilot rejected EDS.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/endpoints/endpoint_builder.go

    	drs := b.destinationRule.GetFrom()
    	configs := make([]model.ConfigHash, 0, len(drs)+1)
    	if b.destinationRule != nil {
    		for _, dr := range drs {
    			configs = append(configs, model.ConfigKey{
    				Kind: kind.DestinationRule,
    				Name: dr.Name, Namespace: dr.Namespace,
    			}.HashCode())
    		}
    	}
    	if b.service != nil {
    		configs = append(configs, model.ConfigKey{
    			Kind: kind.ServiceEntry,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/ep_filters_test.go

    			";;;;cluster2b",
    		},
    	},
    }
    
    var mtlsCases = map[string]map[string]struct {
    	Config         config.Config
    	Configs        []config.Config
    	IsMtlsDisabled bool
    	SubsetName     string
    }{
    	gvk.PeerAuthentication.String(): {
    		"mtls-off-ineffective": {
    			Config: config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.PeerAuthentication,
    					Name:             "mtls-partial",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    		return
    	}
    
    	configs := []types.NamespacedName{}
    	pureHTTP := true
    	for _, modelSvc := range esc.c.servicesForNamespacedName(config.NamespacedName(svc)) {
    		// skip push if it is not exported
    		if modelSvc.Attributes.ExportTo.Contains(visibility.None) {
    			continue
    		}
    
    		configs = append(configs, types.NamespacedName{Name: modelSvc.Hostname.String(), Namespace: svc.Namespace})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. build/dependencies.yaml

        - path: test/integration/scheduler_perf/config/templates/pod-with-secret-volume.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/integration/scheduler_perf/config/templates/pod-with-topology-spreading.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/utils/image/manifest.go
          match: configs\[Pause\] = Config{list\.GcRegistry, "pause", "\d+\.\d+(.\d+)?"}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. tests/integration/pilot/grpc_probe_test.go

    			if !t.Clusters().Default().MinKubeVersion(23) {
    				t.Skip("gRPC probe not supported")
    			}
    
    			ns := namespace.NewOrFail(t, t, namespace.Config{Prefix: "grpc-probe", Inject: true})
    			// apply strict mtls
    			t.ConfigKube(t.Clusters().Configs()...).YAML(ns.Name(), `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: grpc-probe-mtls
    spec:
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion_test.go

    }
    
    var timestampRegex = regexp.MustCompile(`lastTransitionTime:.*`)
    
    func splitOutput(configs []config.Config) IstioResources {
    	out := IstioResources{
    		Gateway:        []config.Config{},
    		VirtualService: []config.Config{},
    	}
    	for _, c := range configs {
    		c.Domain = "domain.suffix"
    		switch c.GroupVersionKind {
    		case gvk.Gateway:
    			out.Gateway = append(out.Gateway, c)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
Back to top