Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 110 for configPath (1.12 sec)

  1. pkg/bootstrap/config.go

    			opts = append(opts, option.ZipkinAddress(tracer.Zipkin.Address))
    		case *meshAPI.Tracing_Lightstep_:
    			isH2 = true
    			// Write the token file.
    			lightstepAccessTokenPath := lightstepAccessTokenFile(config.ConfigPath)
    			//nolint: staticcheck  // Lightstep deprecated
    			err := os.WriteFile(lightstepAccessTokenPath, []byte(tracer.Lightstep.AccessToken), 0o666)
    			if err != nil {
    				return nil, err
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. pkg/config/validation/agent/validation.go

    		}
    	}
    
    	return
    }
    
    // ValidateMeshConfigProxyConfig checks that the mesh config is well-formed
    func ValidateMeshConfigProxyConfig(config *meshconfig.ProxyConfig) (errs error) {
    	if config.ConfigPath == "" {
    		errs = multierror.Append(errs, errors.New("config path must be set"))
    	}
    
    	if config.BinaryPath == "" {
    		errs = multierror.Append(errs, errors.New("binary path must be set"))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. pkg/istio-agent/agent_test.go

    		},
    	}
    
    	// Set-up envoy defaults
    	resp.ProxyConfig.ProxyBootstrapTemplatePath = filepath.Join(env.IstioSrc, "./tools/packaging/common/envoy_bootstrap.json")
    	resp.ProxyConfig.ConfigPath = d
    	resp.ProxyConfig.BinaryPath = filepath.Join(env.LocalOut, "envoy")
    	if path, exists := pkgenv.Register("ENVOY_PATH", "", "Specifies the path to an Envoy binary.").Lookup(); exists {
    		resp.ProxyConfig.BinaryPath = path
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/profile-dump/output/config_path.txt

    John Howard <******@****.***> 1704863403 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 212 bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/profile-dump/output/config_path.yaml

    John Howard <******@****.***> 1704863403 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 192 bytes
    - Viewed (0)
  6. pilot/pkg/model/typed_xds_cache_test.go

    	"istio.io/istio/tests/util/leak"
    )
    
    type entry struct {
    	key              string
    	dependentTypes   []kind.Kind
    	dependentConfigs []ConfigHash
    }
    
    func (e entry) Key() uint64 {
    	h := hash.New()
    	h.WriteString(e.key)
    	return h.Sum64()
    }
    
    func (e entry) DependentConfigs() []ConfigHash {
    	return e.dependentConfigs
    }
    
    func TestAddTwoEntries(t *testing.T) {
    	test.SetForTest(t, &features.XDSCacheMaxSize, 2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. cmd/admin-bucket-handlers.go

    					writeErrorResponse(ctx, w, exportError(ctx, err, cfgFile, bucket), r.URL)
    					return
    				}
    				configData, err := xml.Marshal(config)
    				if err != nil {
    					writeErrorResponse(ctx, w, exportError(ctx, err, cfgFile, bucket), r.URL)
    					return
    				}
    				rawDataFn(bytes.NewReader(configData), cfgPath, len(configData))
    			case bucketLifecycleConfig:
    				config, _, err := globalBucketMetadataSys.GetLifecycleConfig(bucket)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. pkg/credentialprovider/plugin/config_test.go

    )
    
    func Test_readCredentialProviderConfigFile(t *testing.T) {
    	testcases := []struct {
    		name       string
    		configData string
    		config     *kubeletconfig.CredentialProviderConfig
    		expectErr  bool
    	}{
    		{
    			name: "config with 1 plugin and 1 image matcher",
    			configData: `---
    kind: CredentialProviderConfig
    apiVersion: kubelet.config.k8s.io/v1alpha1
    providers:
      - name: test
        matchImages:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  9. cmd/bucket-versioning-handler.go

    			HTTPStatusCode: http.StatusBadRequest,
    		}, r.URL)
    		return
    	}
    
    	configData, err := xml.Marshal(v)
    	if err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	updatedAt, err := globalBucketMetadataSys.Update(ctx, bucket, bucketVersioningConfig, configData)
    	if err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. cmd/bucket-metadata.go

    		case bucketPolicyConfig:
    			b.PolicyConfigJSON = configData
    		case bucketNotificationConfig:
    			b.NotificationConfigXML = configData
    		case bucketLifecycleConfig:
    			b.LifecycleConfigXML = configData
    		case bucketSSEConfig:
    			b.EncryptionConfigXML = configData
    		case bucketTaggingConfig:
    			b.TaggingConfigXML = configData
    		case objectLockConfig:
    			b.ObjectLockConfigXML = configData
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top