Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,118 for Configs (0.41 sec)

  1. pilot/pkg/networking/core/cluster_test.go

    			},
    		},
    	}
    
    	configs := []config.Config{}
    	if c.destRule != nil {
    		configs = append(configs, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.DestinationRule,
    				Name:             "acme",
    			},
    			Spec: c.destRule,
    		})
    	}
    	if c.sidecar != nil {
    		configs = append(configs, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.Sidecar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pilot/pkg/xds/discovery.go

    			return
    		}
    	}
    }
    
    func configsUpdated(req *model.PushRequest) string {
    	configs := ""
    	for key := range req.ConfigsUpdated {
    		configs += key.String()
    		break
    	}
    	if len(req.ConfigsUpdated) > 1 {
    		more := fmt.Sprintf(" and %d more configs", len(req.ConfigsUpdated)-1)
    		configs += more
    	}
    	return configs
    }
    
    func reasonsUpdated(req *model.PushRequest) string {
    	var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. pilot/pkg/xds/discovery_test.go

    	pushesMerged := 10
    	// Number of configs per push
    	configs := 1
    
    	for n := 0; n < b.N; n++ {
    		var req *model.PushRequest
    		for i := 0; i < pushesMerged; i++ {
    			trigger := allTriggers[i%len(allTriggers)]
    			nreq := &model.PushRequest{
    				ConfigsUpdated: sets.New[model.ConfigKey](),
    				Reason:         model.NewReasonStats(trigger),
    			}
    			for c := 0; c < configs; c++ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/config.go

    // TODO putting this here for now to deal with circular imports, needs to be moved
    type Cluster interface {
    	cluster.Cluster
    
    	CanDeploy(Config) (Config, bool)
    }
    
    // Configurable is and object that has Config.
    type Configurable interface {
    	Config() Config
    
    	// ServiceName is the name of this service within the namespace.
    	ServiceName() string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    	config, err := t.delegate.NewConfig(resource)
    	if err != nil {
    		return nil, err
    	}
    
    	configCopy := *config
    	resourceConfig := configCopy.Config
    	resourceConfig.Transformer = t.resourceTransformers.TransformerForResource(resource)
    	configCopy.Config = resourceConfig
    
    	return &configCopy, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. pilot/docker/Dockerfile.proxyv2

    # Install Envoy.
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/${SIDECAR} /usr/local/bin/${SIDECAR}
    
    # Environment variable indicating the exact proxy sha - for debugging or version-specific configs
    ENV ISTIO_META_ISTIO_PROXY_SHA $proxy_version
    
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/pilot-agent /usr/local/bin/pilot-agent
    
    # The pilot-agent will bootstrap Envoy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/validatingwebhookconfiguration.yaml

        istio: istiod
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    webhooks:
      # Webhook handling per-revision validation. Mostly here so we can determine whether webhooks
      # are rejecting invalid configs on a per-revision basis.
      - name: rev.validation.istio.io
        clientConfig:
          # Should change from base but cannot for API compat
          {{- if .Values.base.validationURL }}
          url: {{ .Values.base.validationURL }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. pilot/pkg/xds/sds.go

    }
    
    func (sr SecretResource) DependentConfigs() []model.ConfigHash {
    	configs := []model.ConfigHash{}
    	for _, config := range relatedConfigs(model.ConfigKey{Kind: kind.Secret, Name: sr.Name, Namespace: sr.Namespace}) {
    		configs = append(configs, config.HashCode())
    	}
    	return configs
    }
    
    func (sr SecretResource) Cacheable() bool {
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/config/v1alpha1/defaults.go

    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    // as defaulting in the scheme is done as part of the conversion, and there would
    // be no easy way to opt-out. Instead, if you want to use this defaulting method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/telemetry_test.go

    	var configs []config.Config
    	for _, data := range ts.data {
    		if data.typ == typ {
    			if namespace != "" && data.ns == namespace {
    				continue
    			}
    			configs = append(configs, data.cfg)
    		}
    	}
    	return configs
    }
    
    func newTracingConfig(providerName string, disabled bool) *TracingConfig {
    	return &TracingConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top