Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 77 of 77 for configPath (0.26 sec)

  1. pilot/pkg/model/envoyfilter.go

    	Patches          map[networking.EnvoyFilter_ApplyTo][]*EnvoyFilterConfigPatchWrapper
    	Priority         int32
    	creationTime     time.Time
    }
    
    // EnvoyFilterConfigPatchWrapper is a wrapper over the EnvoyFilter ConfigPatch api object
    // fields are ordered such that this struct is aligned
    type EnvoyFilterConfigPatchWrapper struct {
    	Value     proto.Message
    	Match     *networking.EnvoyFilter_EnvoyConfigObjectMatch
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/sidecar.go

    	// Set of known configs this sidecar depends on.
    	// This field will be used to determine the config/resource scope
    	// which means which config changes will affect the proxies within this scope.
    	configDependencies sets.Set[ConfigHash]
    }
    
    // MarshalJSON implements json.Marshaller
    func (sc *SidecarScope) MarshalJSON() ([]byte, error) {
    	// Json cannot expose unexported fields, so copy the ones we want here
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  3. pilot/pkg/xds/endpoints/endpoint_builder.go

    	// Service being nil means the EDS will be empty anyways, so not much lost here.
    	return b.service != nil
    }
    
    func (b *EndpointBuilder) DependentConfigs() []model.ConfigHash {
    	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,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    // replicas is replica of each DNS deployment
    // deploymentSize is the number of deployments with `k8s-app=kube-dns` label.
    func newMockClientForTest(t *testing.T, replicas int32, deploymentSize int, image string, configMap string, configData string) *clientsetfake.Clientset {
    	if image == "" {
    		image = "registry.k8s.io/coredns/coredns:v1.11.1"
    	}
    	client := clientsetfake.NewSimpleClientset()
    	for i := 0; i < deploymentSize; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

      }
    }
    
    # Generates the containerd config.toml file.
    function Configure_Containerd {
      $config_path = Get_Containerd_ConfigPath
      $config_dir = [System.IO.Path]::GetDirectoryName($config_path)
      New-Item $config_dir -ItemType 'directory' -Force | Out-Null
      Set-Content ${config_path} @"
    [plugins.scheduler]
      schedule_delay = '0s'
      startup_delay = '0s'
    [plugins.cri]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    }
    
    // DelegateVirtualServices lists all the delegate virtual services configkeys associated with the provided virtual services
    func (ps *PushContext) DelegateVirtualServices(vses []config.Config) []ConfigHash {
    	var out []ConfigHash
    	for _, vs := range vses {
    		for _, delegate := range ps.virtualServiceIndex.delegates[ConfigKey{Kind: kind.VirtualService, Namespace: vs.Namespace, Name: vs.Name}] {
    			out = append(out, delegate.HashCode())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    		}
    		bucketExists = true
    	}
    
    	if globalSiteReplicationSys.isEnabled() {
    		configData := []byte(`<VersioningConfiguration><Status>Enabled</Status><ExcludedPrefixes><Prefix>speedtest/*</Prefix></ExcludedPrefixes></VersioningConfiguration>`)
    		if _, err = globalBucketMetadataSys.Update(ctx, bucketName, bucketVersioningConfig, configData); err != nil {
    			return false, err
    		}
    	}
    
    	return bucketExists, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top