@@ -39,12 +39,13 @@ func (m *NodeManager) WaitForOnline(ctx context.Context) error {
3939}
4040
4141type AnalyticsSettings struct {
42- BlobStorageRegion string
43- BlobStoragePrefix string
44- BlobStorageBucket string
45- BlobStorageScheme string
46- BlobStorageEndpoint string
47- BlobStorageAnonymousAuth bool
42+ BlobStorageRegion string
43+ BlobStoragePrefix string
44+ BlobStorageBucket string
45+ BlobStorageScheme string
46+ BlobStorageEndpoint string
47+ BlobStorageAnonymousAuth bool
48+ BlobStorageForcePathStyle bool
4849}
4950
5051type SetupOneNodeClusterOptions struct {
@@ -57,8 +58,8 @@ type SetupOneNodeClusterOptions struct {
5758 Username string
5859 Password string
5960
60- Services []string
61- ServerGroup string
61+ Services []string
62+ ServerGroup string
6263 AnalyticsSettings AnalyticsSettings
6364}
6465
@@ -91,12 +92,13 @@ func (m *NodeManager) SetupOneNodeCluster(ctx context.Context, opts *SetupOneNod
9192 }
9293
9394 err = c .SetupAnalytics (ctx , & SetupAnalyticsOptions {
94- BlobStorageRegion : opts .AnalyticsSettings .BlobStorageRegion ,
95- BlobStoragePrefix : opts .AnalyticsSettings .BlobStoragePrefix ,
96- BlobStorageBucket : opts .AnalyticsSettings .BlobStorageBucket ,
97- BlobStorageScheme : opts .AnalyticsSettings .BlobStorageScheme ,
98- BlobStorageEndpoint : opts .AnalyticsSettings .BlobStorageEndpoint ,
99- BlobStorageAnonymousAuth : opts .AnalyticsSettings .BlobStorageAnonymousAuth ,
95+ BlobStorageRegion : opts .AnalyticsSettings .BlobStorageRegion ,
96+ BlobStoragePrefix : opts .AnalyticsSettings .BlobStoragePrefix ,
97+ BlobStorageBucket : opts .AnalyticsSettings .BlobStorageBucket ,
98+ BlobStorageScheme : opts .AnalyticsSettings .BlobStorageScheme ,
99+ BlobStorageEndpoint : opts .AnalyticsSettings .BlobStorageEndpoint ,
100+ BlobStorageAnonymousAuth : opts .AnalyticsSettings .BlobStorageAnonymousAuth ,
101+ BlobStorageForcePathStyle : opts .AnalyticsSettings .BlobStorageForcePathStyle ,
100102 })
101103 if err != nil {
102104 return errors .Wrap (err , "failed to configure analytics settings" )
0 commit comments