Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 220 for _rds (0.15 sec)

  1. pilot/pkg/xds/lds_test.go

    	}
    
    	// Expect two vhost blocks in RDS output for 8080 (one for http1, another for http2)
    	// plus one extra due to mem registry
    	if len(adsc.GetRoutes()["8080"].VirtualHosts) != 3 {
    		t.Fatalf("Expected 3 VirtualHosts in RDS output. Got %d", len(adsc.GetRoutes()["8080"].VirtualHosts))
    	}
    }
    
    // TestLDS using gateways
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/lib/panels.libsonnet

          + timeSeries.standardOptions.withOverrides([
            overrideSeries('cds', 'Clusters'),
            overrideSeries('eds', 'Endpoints'),
            overrideSeries('lds', 'Listeners'),
            overrideSeries('rds', 'Routes'),
            overrideSeries('istio.io/debug', 'Debug'),
            overrideSeries('wads', 'Authorization'),
            overrideSeries('wds', 'Workloads'),
          ]),
      },
    
      heatmap: {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/mapper.go

    		if err != nil {
    			if _, ok := err.(*meta.NoKindMatchError); ok {
    				return nil, fmt.Errorf("resource mapping not found for name: %q namespace: %q from %q: %w\nensure CRDs are installed first",
    					name, namespace, source, err)
    			}
    			return nil, fmt.Errorf("unable to recognize %q: %v", source, err)
    		}
    		ret.Mapping = mapping
    
    		client, err := m.clientFn(gvk.GroupVersion())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 03 10:53:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/grpcgen/lds.go

    							HttpFilters: filters,
    							RouteSpecifier: &hcm.HttpConnectionManager_Rds{
    								// TODO: for TCP listeners don't generate RDS, but some indication of cluster name.
    								Rds: &hcm.Rds{
    									ConfigSource: &core.ConfigSource{
    										ConfigSourceSpecifier: &core.ConfigSource_Ads{
    											Ads: &core.AggregatedConfigSource{},
    										},
    									},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/config/source.go

    	// YAMLOrFail calls GetYAML and fails if an error occurs.
    	YAMLOrFail(t test.Failer) string
    
    	// MustYAML calls GetYAML and panics if an error occurs.
    	MustYAML() string
    
    	// Split this source into individual CRDs.
    	Split() ([]Source, error)
    
    	// SplitOrFail calls Split and fails if an error occurs.
    	SplitOrFail(t test.Failer) []Source
    
    	// MustSplit calls Split and panics if an error occurs.
    	MustSplit() []Source
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/configgen.go

    		watched *model.WatchedResource) ([]*discovery.Resource, []string, model.XdsLogDetails, bool)
    
    	// BuildHTTPRoutes returns the list of HTTP routes for the given proxy. This is the RDS output
    	BuildHTTPRoutes(node *model.Proxy, req *model.PushRequest, routeNames []string) ([]*discovery.Resource, model.XdsLogDetails)
    
    	// BuildNameTable returns list of hostnames and the associated IPs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/crdclient/client_test.go

    	}
    
    	if _, err := store.Create(config.Config{
    		Meta: configMeta,
    		Spec: pb,
    	}); err != nil {
    		t.Fatalf("Create => got %v", err)
    	}
    
    	return pb
    }
    
    // Ensure that the client can run without CRDs present
    func TestClientNoCRDs(t *testing.T) {
    	schema := collection.NewSchemasBuilder().MustAdd(collections.Sidecar).Build()
    	store, _ := makeClient(t, schema, nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. tests/integration/helm/upgrade/util.go

    	_, err := shell.Execute(false, execCmd)
    	if err != nil {
    		ctx.Fatalf("couldn't run kubectl apply on crds folder: %v", err)
    	}
    
    	// Upgrade base chart
    	err = h.UpgradeChart(helmtest.BaseReleaseName, filepath.Join(helmtest.ManifestsChartPath, helmtest.BaseChart),
    		nsConfig.Get(helmtest.BaseReleaseName), overrideValuesFile, helmtest.Timeout, "--skip-crds")
    	if err != nil {
    		ctx.Fatalf("failed to upgrade istio %s chart", helmtest.BaseReleaseName)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/etcd.go

    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"crd", "crds"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/structuredmerge.go

    			IgnoredFields: resetFields,
    		},
    	}, nil
    }
    
    // NewCRDStructuredMergeManager creates a new Manager specifically for
    // CRDs. This allows for the possibility of fields which are not defined
    // in models, as well as having no models defined at all.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:55:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top