Skip to content

Commit

Permalink
Bump version to v1.19.0-rc1 (#766)
Browse files Browse the repository at this point in the history
  • Loading branch information
agarciamontoro authored Jul 15, 2024
1 parent 430e9b0 commit ccb92db
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 @@ -72,7 +72,7 @@
"AdminEmail": "sysadmin@sample.mattermost.com",
"AdminUsername": "sysadmin",
"AdminPassword": "Sys@dmin-sample1",
"LoadTestDownloadURL": "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.18.0/mattermost-load-test-ng-v1.18.0-linux-amd64.tar.gz",
"LoadTestDownloadURL": "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.19.0-rc1/mattermost-load-test-ng-v1.19.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.18.0/mattermost-load-test-ng-v1.18.0-linux-amd64.tar.gz" validate:"url"`
LoadTestDownloadURL string `default:"https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.19.0-rc1/mattermost-load-test-ng-v1.19.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.18.0/mattermost-load-test-ng-v1.18.0-linux-amd64.tar.gz",
LoadTestDownloadURL: "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.19.0-rc1/mattermost-load-test-ng-v1.19.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.18.0/mattermost-load-test-ng-v1.18.0-linux-amd64.tar.gz",
LoadTestDownloadURL: "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.19.0-rc1/mattermost-load-test-ng-v1.19.0-rc1-linux-amd64.tar.gz",
ElasticSearchSettings: ElasticSearchSettings{
InstanceCount: 1,
Version: "Elasticsearch_7.10",
Expand Down

0 comments on commit ccb92db

Please sign in to comment.