Skip to content

Commit

Permalink
upgrade jindofs version (#1238)
Browse files Browse the repository at this point in the history
Signed-off-by: frankleaf <[email protected]>
  • Loading branch information
frankleaf authored Dec 8, 2021
1 parent d67f558 commit ad54aa5
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions charts/fluid/fluid/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ runtime:
portRange: 18000-19999
enabled: false
smartdata:
image: registry.cn-shanghai.aliyuncs.com/jindofs/smartdata:3.7.0
image: registry.cn-shanghai.aliyuncs.com/jindofs/smartdata:3.7.3
fuse:
image: registry.cn-shanghai.aliyuncs.com/jindofs/jindo-fuse:3.7.0
image: registry.cn-shanghai.aliyuncs.com/jindofs/jindo-fuse:3.7.3
controller:
image: fluidcloudnative/jindoruntime-controller:v0.7.0-dc26f4b
init:
Expand Down
4 changes: 2 additions & 2 deletions charts/fluid/v0.6.0/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ runtime:
portRange: 18000-19999
enabled: false
smartdata:
image: registry.cn-shanghai.aliyuncs.com/jindofs/smartdata:3.7.0
image: registry.cn-shanghai.aliyuncs.com/jindofs/smartdata:3.7.3
fuse:
image: registry.cn-shanghai.aliyuncs.com/jindofs/jindo-fuse:3.7.0
image: registry.cn-shanghai.aliyuncs.com/jindofs/jindo-fuse:3.7.3
controller:
image: fluidcloudnative/jindoruntime-controller:v0.6.0-48de610
goosefs:
Expand Down
4 changes: 4 additions & 0 deletions charts/jindofs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,9 @@ Change podManagementPolicy from OrderedReady to Parallel
0.8.3

Add owner Reference

0.8.4

Support more Posix


2 changes: 1 addition & 1 deletion charts/jindofs/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: 3.7.0
appVersion: 3.7.3
version: 0.8.3
description: FileSystem on the cloud based on Aliyun Object Storage aimed for data
acceleration.
Expand Down
4 changes: 2 additions & 2 deletions charts/jindofs/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


image: registry-vpc.__ACK_REGION_ID__.aliyuncs.com/jindo/smartdata
imageTag: "3.7.0"
imageTag: "3.7.3"
imagePullPolicy: Always

initPortCheck:
Expand All @@ -15,7 +15,7 @@ initPortCheck:
portsToCheck: ""

fuseImage: registry-vpc.__ACK_REGION_ID__.aliyuncs.com/jindo/jindo-fuse
fuseImageTag: "3.7.0"
fuseImageTag: "3.7.3"

user: 0
group: 0
Expand Down
2 changes: 1 addition & 1 deletion pkg/common/jindo.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const (

JINDO_FUSE_IMAGE_ENV = "JINDO_FUSE_IMAGE_ENV"

DEFAULT_JINDO_RUNTIME_IMAGE = "registry.cn-shanghai.aliyuncs.com/jindofs/smartdata:3.7.0"
DEFAULT_JINDO_RUNTIME_IMAGE = "registry.cn-shanghai.aliyuncs.com/jindofs/smartdata:3.7.3"

JINDO_DNS_SERVER = "JINDO_DNS_SERVER_ENV"
)
4 changes: 2 additions & 2 deletions pkg/ddc/jindo/transform.go
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ func (e *JindoEngine) transformFuseArg(runtime *datav1alpha1.JindoRuntime, datas
func (e *JindoEngine) getSmartDataConfigs() (image, tag, dnsServer string) {
var (
defaultImage = "registry.cn-shanghai.aliyuncs.com/jindofs/smartdata"
defaultTag = "3.7.0"
defaultTag = "3.7.3"
defaultDnsServer = "1.1.1.1"
)

Expand All @@ -519,7 +519,7 @@ func (e *JindoEngine) getSmartDataConfigs() (image, tag, dnsServer string) {
func (e *JindoEngine) parseFuseImage() (image, tag string) {
var (
defaultImage = "registry.cn-shanghai.aliyuncs.com/jindofs/jindo-fuse"
defaultTag = "3.7.0"
defaultTag = "3.7.3"
)

image = docker.GetImageRepoFromEnv(common.JINDO_FUSE_IMAGE_ENV)
Expand Down
2 changes: 1 addition & 1 deletion pkg/ddc/jindo/transform_fuse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func TestParseFuseImage(t *testing.T) {
Name: "test",
Path: "/",
}},
}}, &Jindo{}, "registry.cn-shanghai.aliyuncs.com/jindofs/jindo-fuse:3.7.0"},
}}, &Jindo{}, "registry.cn-shanghai.aliyuncs.com/jindofs/jindo-fuse:3.7.3"},
}
for _, test := range tests {
engine := &JindoEngine{Log: log.NullLogger{}}
Expand Down
2 changes: 1 addition & 1 deletion pkg/ddc/jindo/transform_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func TestParseSmartDataImage(t *testing.T) {
Name: "test",
Path: "/",
}},
}}, &Jindo{}, "registry.cn-shanghai.aliyuncs.com/jindofs/smartdata:3.7.0"},
}}, &Jindo{}, "registry.cn-shanghai.aliyuncs.com/jindofs/smartdata:3.7.3"},
}
for _, test := range tests {
engine := &JindoEngine{Log: log.NullLogger{}}
Expand Down

0 comments on commit ad54aa5

Please sign in to comment.