48 lines
1 KiB
Go
48 lines
1 KiB
Go
package solr
|
|
|
|
import (
|
|
"context"
|
|
"embed"
|
|
"path/filepath"
|
|
"time"
|
|
|
|
"github.com/FAU-CDI/wisski-distillery/internal/dis/component"
|
|
"github.com/FAU-CDI/wisski-distillery/pkg/environment"
|
|
)
|
|
|
|
type Solr struct {
|
|
component.Base
|
|
|
|
BaseURL string // upstream solr url
|
|
|
|
PollContext context.Context // context to abort polling with
|
|
PollInterval time.Duration // duration to wait for during wait
|
|
}
|
|
|
|
func (s *Solr) Path() string {
|
|
return filepath.Join(s.Still.Config.DeployRoot, "core", "solr")
|
|
}
|
|
|
|
func (*Solr) Context(parent component.InstallationContext) component.InstallationContext {
|
|
return parent
|
|
}
|
|
|
|
//go:embed all:solr
|
|
//go:embed solr.env
|
|
var resources embed.FS
|
|
|
|
func (solr *Solr) Stack(env environment.Environment) component.StackWithResources {
|
|
return component.MakeStack(solr, env, component.StackWithResources{
|
|
Resources: resources,
|
|
ContextPath: "solr",
|
|
|
|
EnvPath: "solr.env",
|
|
EnvContext: map[string]string{
|
|
"DOCKER_NETWORK_NAME": solr.Config.DockerNetworkName,
|
|
},
|
|
|
|
MakeDirs: []string{
|
|
filepath.Join("data"),
|
|
},
|
|
})
|
|
}
|