Skip to content

Commit

Permalink
Merge pull request #319 from banzaicloud/ack-k8s-version-fix
Browse files Browse the repository at this point in the history
ack k8s version fix
  • Loading branch information
kozmagabor authored May 11, 2020
2 parents 46c7b41 + 0947672 commit 53ef400
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/cloudinfo/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v1
description: Cloud instance type and price information as a service
name: cloudinfo
version: 0.7.0
version: 0.7.1

appVersion: "0.9.14"
appVersion: "0.9.15"

home: https://banzaicloud.com

Expand Down
2 changes: 1 addition & 1 deletion charts/cloudinfo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ serviceAccountName: ""

image:
repository: banzaicloud/cloudinfo
tag: 0.9.14
tag: 0.9.15
pullPolicy: IfNotPresent

frontend:
Expand Down
2 changes: 1 addition & 1 deletion internal/cloudinfo/providers/alibaba/cloudinfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ func (a *AlibabaInfoer) GetServiceProducts(region, service string) ([]types.Prod
func (a *AlibabaInfoer) GetVersions(service, region string) ([]types.LocationVersion, error) {
switch service {
case svcAck:
return []types.LocationVersion{types.NewLocationVersion(region, []string{"1.16.6"}, "1.14.8")}, nil
return []types.LocationVersion{types.NewLocationVersion(region, []string{"1.16.6", "1.14.8"}, "1.14.8")}, nil
default:
return []types.LocationVersion{}, nil
}
Expand Down

0 comments on commit 53ef400

Please sign in to comment.