Skip to content

Commit

Permalink
Bump version to v1.22.0-rc1 (#831)
Browse files Browse the repository at this point in the history
  • Loading branch information
agarciamontoro authored Oct 14, 2024
1 parent 147f26e commit 43a75b5
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 @@ -82,7 +82,7 @@
"AdminEmail": "[email protected]",
"AdminUsername": "sysadmin",
"AdminPassword": "Sys@dmin-sample1",
"LoadTestDownloadURL": "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.21.0/mattermost-load-test-ng-v1.21.0-linux-amd64.tar.gz",
"LoadTestDownloadURL": "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.22.0-rc1/mattermost-load-test-ng-v1.22.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 @@ -80,7 +80,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.21.0/mattermost-load-test-ng-v1.21.0-linux-amd64.tar.gz" validate:"url"`
LoadTestDownloadURL string `default:"https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.22.0-rc1/mattermost-load-test-ng-v1.22.0-rc1-linux-amd64.tar.gz" validate:"url"`
ElasticSearchSettings ElasticSearchSettings
RedisSettings RedisSettings
JobServerSettings JobServerSettings
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.21.0/mattermost-load-test-ng-v1.21.0-linux-amd64.tar.gz",
LoadTestDownloadURL: "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.22.0-rc1/mattermost-load-test-ng-v1.22.0-rc1-linux-amd64.tar.gz",
}
}

Expand Down Expand Up @@ -76,7 +76,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.21.0/mattermost-load-test-ng-v1.21.0-linux-amd64.tar.gz",
LoadTestDownloadURL: "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.22.0-rc1/mattermost-load-test-ng-v1.22.0-rc1-linux-amd64.tar.gz",
ElasticSearchSettings: ElasticSearchSettings{
InstanceCount: 1,
Version: "OpenSearch_2.7",
Expand Down

0 comments on commit 43a75b5

Please sign in to comment.