Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 115 for configPath (0.25 sec)

  1. cmd/site-replication.go

    		meta.TaggingConfigXML = configData
    		meta.TaggingConfigUpdatedAt = item.UpdatedAt
    	}
    
    	if item.ObjectLockConfig != nil {
    		configData, err := base64.StdEncoding.DecodeString(*item.ObjectLockConfig)
    		if err != nil {
    			return wrapSRErr(err)
    		}
    		meta.ObjectLockConfigXML = configData
    		meta.ObjectLockConfigUpdatedAt = item.UpdatedAt
    	}
    
    	if item.SSEConfig != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. pilot/pkg/model/config.go

    var _ = udpa.TypedStruct{}
    
    type ConfigHash uint64
    
    // ConfigKey describe a specific config item.
    // In most cases, the name is the config's name. However, for ServiceEntry it is service's FQDN.
    type ConfigKey struct {
    	Kind      kind.Kind
    	Name      string
    	Namespace string
    }
    
    func (key ConfigKey) HashCode() ConfigHash {
    	h := hash.New()
    	h.Write([]byte{byte(key.Kind)})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. cmd/bucket-handlers.go

    	updatedAt, err := globalBucketMetadataSys.Update(ctx, bucket, objectLockConfig, configData)
    	if err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	// Call site replication hook.
    	//
    	// We encode the xml bytes as base64 to ensure there are no encoding
    	// errors.
    	cfgStr := base64.StdEncoding.EncodeToString(configData)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/util/find_errorline_utils.go

    	// Path for DestinationRule port-level tls certificate.
    	// Required parameters: portLevelSettings index.
    	DestinationRuleTLSPortLevelCert = "{.spec.trafficPolicy.portLevelSettings[%d].tls.caCertificates}"
    
    	// Path for ConfigPatch in envoyFilter
    	// Required parameters: envoyFilter config patch index
    	EnvoyFilterConfigPath = "{.spec.configPatches[%d].patch.value}"
    
    	// Path for selector in telemetry.
    	// Required parameters: selector label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top