Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,945 for Configs (0.15 sec)

  1. 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)
  2. 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)
  3. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    	accept := func(cfg *admin.ConfigDump) (bool, error) {
    		validator := structpath.ForProto(cfg)
    		for _, port := range dest.Config().Ports {
    			clusterName := clusterName(dest, port)
    			// Ensure that we have an outbound configuration for the target port.
    			err := validator.NotExists("{.configs[*].dynamicActiveClusters[?(@.cluster.Name == '%s')]}", clusterName).Check()
    			if err != nil {
    				return false, err
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. .gitignore

    /third_party/etcd*
    /default.etcd
    
    # Also ignore protoc installed by hack/install-protoc.sh
    /third_party/protoc*
    
    # User cluster configs
    .kubeconfig
    
    .tags*
    
    # Version file for dockerized build
    .dockerized-kube-version-defs
    
    # Web UI
    /www/master/node_modules/
    /www/master/npm-debug.log
    /www/master/shared/config/development.json
    
    # Karma output
    /www/test_out
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. cmd/kubeadm/app/util/config/upgradeconfiguration.go

    	}
    
    	// Check is there any component configs defined in the config file.
    	for gvk := range docmap {
    		if componentCfgGV.Has(gvk.Group) {
    			klog.Warningf("[config] WARNING: YAML document with Component Configs %v is deprecated for upgrade and will be ignored \n", gvk.Group)
    			continue
    		}
    	}
    
    	return upgradeCfg, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top