Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 111 for configPath (0.54 sec)

  1. cmd/kubeadm/app/componentconfigs/configset.go

    			return nil, nil
    		}
    		return nil, err
    	}
    
    	configData, ok := configMap.Data[cmKey]
    	if !ok {
    		return nil, errors.Errorf("unexpected error when reading %s ConfigMap: %s key value pair missing", cmName, cmKey)
    	}
    
    	gvkmap, err := kubeadmutil.SplitYAMLDocuments([]byte(configData))
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      local config_path='/etc/srv/kubernetes/kube-controller-manager/kubeconfig'
      params+=("--use-service-account-credentials")
      params+=("--cloud-provider=${CLOUD_PROVIDER_FLAG:-external}")
      params+=("--kubeconfig=${config_path}" "--authentication-kubeconfig=${config_path}" "--authorization-kubeconfig=${config_path}")
      params+=("--root-ca-file=${CA_CERT_BUNDLE_PATH}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. pilot/pkg/xds/sds.go

    	return model.SDSType
    }
    
    func (sr SecretResource) Key() any {
    	return sr.SecretResource.Key() + "/" + sr.pkpConfHash
    }
    
    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
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/xds_cache.go

    	// Key is the key to be used in cache.
    	Key() any
    	// DependentConfigs is config items that this cache key is dependent on.
    	// Whenever these configs change, we should invalidate this cache entry.
    	DependentConfigs() []ConfigHash
    	// Cacheable indicates whether this entry is valid for cache. For example
    	// for EDS to be cacheable, the Endpoint should have corresponding service.
    	Cacheable() bool
    }
    
    const (
    	CDSType = "cds"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 07:02:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top