mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-12 20:00:48 +00:00
ef8a8cf2cb
Wire Microsoft's local Azure Blob Storage emulator into the dev/CI docker-compose stack so an upcoming Azure FileBackend driver and its tests have a target to run against, without requiring an Azure account. * Define the azurite service in docker-compose.common.yml (used by both the local-dev and CI compose files). * Add azurite to the makefile + main docker-compose.yml service maps, and to docker-compose-generator so callers can include it via ENABLED_DOCKER_SERVICES. * Auto-include azurite in `make start-docker` (mirrors how minio is auto-included today), so existing local workflows keep working without any per-developer config change. * Add azurite to the CI start_dependencies wait set so CI brings it up alongside postgres/minio. * Set CI_AZURITE_HOST / CI_AZURITE_PORT in dotenv/test.env, mirroring the CI_MINIO_* pattern. No production filestore changes — this PR is mergeable in isolation with no user-visible behavior. ------ AI assisted commit
65 lines
1.6 KiB
Go
65 lines
1.6 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/goccy/go-yaml"
|
|
)
|
|
|
|
type DockerCompose struct {
|
|
Services map[string]*Container `yaml:"services"`
|
|
}
|
|
|
|
type Container struct {
|
|
Command string `yaml:"command,omitempty"`
|
|
Image string `yaml:"image,omitempty"`
|
|
Network []string `yaml:"networks,omitempty"`
|
|
DependsOn []string `yaml:"depends_on,omitempty"`
|
|
}
|
|
|
|
func main() {
|
|
validServices := map[string]int{
|
|
"postgres": 5432,
|
|
"minio": 9000,
|
|
"azurite": 10000,
|
|
"inbucket": 9001,
|
|
"openldap": 389,
|
|
"elasticsearch": 9200,
|
|
"opensearch": 9201,
|
|
"redis": 6379,
|
|
"dejavu": 1358,
|
|
"keycloak": 8080,
|
|
"prometheus": 9090,
|
|
"grafana": 3000,
|
|
"loki": 3100,
|
|
"otel-collector": 13133,
|
|
}
|
|
command := []string{}
|
|
for _, arg := range os.Args[1:] {
|
|
port, ok := validServices[arg]
|
|
if !ok {
|
|
panic(fmt.Sprintf("Unknown service %s", arg))
|
|
}
|
|
command = append(command, fmt.Sprintf("%s:%d", arg, port))
|
|
}
|
|
|
|
var dockerCompose DockerCompose
|
|
dockerCompose.Services = map[string]*Container{}
|
|
dockerCompose.Services["start_dependencies"] = &Container{
|
|
Image: "mattermost/mattermost-wait-for-dep:latest",
|
|
Network: []string{"mm-test"},
|
|
DependsOn: os.Args[1:],
|
|
Command: strings.Join(command, " "),
|
|
}
|
|
resultData, err := yaml.Marshal(dockerCompose)
|
|
if err != nil {
|
|
panic(fmt.Sprintf("Unable to serialize the docker-compose file: %s.", err.Error()))
|
|
}
|
|
fmt.Println(string(resultData))
|
|
}
|