File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ jaegerOperator:
14
14
inCluster : true
15
15
kind : Full
16
16
metadata :
17
- region : " foobar "
17
+ region : " local "
18
18
objectStorage :
19
19
inCluster : true
20
20
observability :
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ func StorageConfig(context *RenderContext) storageconfig.StorageConfig {
50
50
AccessKeyID : context .Values .StorageAccessKey ,
51
51
SecretAccessKey : context .Values .StorageSecretKey ,
52
52
Secure : false ,
53
- Region : context . Config . Metadata . Region ,
53
+ Region : "local" , // Local Minio requires this value - workspace allocation fails if not set to this
54
54
ParallelUpload : 6 ,
55
55
},
56
56
}
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ func (v version) Defaults(in interface{}) error {
43
43
cfg .Certificate .Kind = ObjectRefSecret
44
44
cfg .Certificate .Name = "https-certificates"
45
45
cfg .Database .InCluster = pointer .Bool (true )
46
+ cfg .Metadata .Region = "local"
46
47
cfg .ObjectStorage .InCluster = pointer .Bool (true )
47
48
cfg .ContainerRegistry .InCluster = pointer .Bool (true )
48
49
cfg .Jaeger .InCluster = pointer .Bool (true )
You can’t perform that action at this time.
0 commit comments