Skip to content

Commit

Permalink
Bump version to v1.17.0-rc1 (#745)
Browse files Browse the repository at this point in the history
  • Loading branch information
agarciamontoro authored May 13, 2024
1 parent dcc986f commit c3fb883
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/deployer.sample.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"AdminEmail": "sysadmin@sample.mattermost.com",
"AdminUsername": "sysadmin",
"AdminPassword": "Sys@dmin-sample1",
"LoadTestDownloadURL": "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.15.0/mattermost-load-test-ng-v1.15.0-linux-amd64.tar.gz",
"LoadTestDownloadURL": "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.17.0-rc1/mattermost-load-test-ng-v1.17.0-rc1-linux-amd64.tar.gz",
"LogSettings": {
"EnableConsole": true,
"ConsoleLevel": "INFO",
Expand Down
2 changes: 1 addition & 1 deletion deployment/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ type Config struct {
// URL from where to download load-test-ng binaries and configuration files.
// The configuration files provided in the package will be overridden in
// the deployment process.
LoadTestDownloadURL string `default:"https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.15.0/mattermost-load-test-ng-v1.15.0-linux-amd64.tar.gz" validate:"url"`
LoadTestDownloadURL string `default:"https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.17.0-rc1/mattermost-load-test-ng-v1.17.0-rc1-linux-amd64.tar.gz" validate:"url"`
ElasticSearchSettings ElasticSearchSettings
JobServerSettings JobServerSettings
LogSettings logger.Settings
Expand Down
4 changes: 2 additions & 2 deletions deployment/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ func TestConfigIsValid(t *testing.T) {
baseConfig := func() Config {
return Config{
MattermostDownloadURL: "https://latest.mattermost.com/mattermost-enterprise-linux",
LoadTestDownloadURL: "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.15.0/mattermost-load-test-ng-v1.15.0-linux-amd64.tar.gz",
LoadTestDownloadURL: "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.17.0-rc1/mattermost-load-test-ng-v1.17.0-rc1-linux-amd64.tar.gz",
}
}

Expand Down Expand Up @@ -54,7 +54,7 @@ func TestValidateElasticSearchConfig(t *testing.T) {
return Config{
ClusterName: "clustername",
MattermostDownloadURL: "https://latest.mattermost.com/mattermost-enterprise-linux",
LoadTestDownloadURL: "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.15.0/mattermost-load-test-ng-v1.15.0-linux-amd64.tar.gz",
LoadTestDownloadURL: "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.17.0-rc1/mattermost-load-test-ng-v1.17.0-rc1-linux-amd64.tar.gz",
ElasticSearchSettings: ElasticSearchSettings{
InstanceCount: 1,
VpcID: "vpc-01234567890abcdef",
Expand Down

0 comments on commit c3fb883

Please sign in to comment.