| package installer |
| |
| import ( |
| "bytes" |
| "encoding/json" |
| "errors" |
| "fmt" |
| "io/fs" |
| "net/http" |
| "path" |
| "path/filepath" |
| "strings" |
| |
| "github.com/giolekva/pcloud/core/installer/io" |
| "github.com/giolekva/pcloud/core/installer/soft" |
| |
| helmv2 "github.com/fluxcd/helm-controller/api/v2" |
| "sigs.k8s.io/yaml" |
| ) |
| |
| const configFileName = "config.yaml" |
| const kustomizationFileName = "kustomization.yaml" |
| |
| var ErrorNotFound = errors.New("not found") |
| |
| type AppManager struct { |
| repoIO soft.RepoIO |
| nsc NamespaceCreator |
| jc JobCreator |
| hf HelmFetcher |
| appDirRoot string |
| } |
| |
| func NewAppManager( |
| repoIO soft.RepoIO, |
| nsc NamespaceCreator, |
| jc JobCreator, |
| hf HelmFetcher, |
| appDirRoot string, |
| ) (*AppManager, error) { |
| return &AppManager{ |
| repoIO, |
| nsc, |
| jc, |
| hf, |
| appDirRoot, |
| }, nil |
| } |
| |
| func (m *AppManager) Config() (EnvConfig, error) { |
| var cfg EnvConfig |
| if err := soft.ReadYaml(m.repoIO, configFileName, &cfg); err != nil { |
| return EnvConfig{}, err |
| } else { |
| return cfg, nil |
| } |
| } |
| |
| func (m *AppManager) appConfig(path string) (AppInstanceConfig, error) { |
| var cfg AppInstanceConfig |
| if err := soft.ReadJson(m.repoIO, path, &cfg); err != nil { |
| return AppInstanceConfig{}, err |
| } else { |
| return cfg, nil |
| } |
| } |
| |
| func (m *AppManager) FindAllInstances() ([]AppInstanceConfig, error) { |
| m.repoIO.Pull() |
| kust, err := soft.ReadKustomization(m.repoIO, filepath.Join(m.appDirRoot, "kustomization.yaml")) |
| if err != nil { |
| return nil, err |
| } |
| ret := make([]AppInstanceConfig, 0) |
| for _, app := range kust.Resources { |
| cfg, err := m.appConfig(filepath.Join(m.appDirRoot, app, "config.json")) |
| if err != nil { |
| return nil, err |
| } |
| cfg.Id = app |
| ret = append(ret, cfg) |
| } |
| return ret, nil |
| } |
| |
| func (m *AppManager) FindAllAppInstances(name string) ([]AppInstanceConfig, error) { |
| kust, err := soft.ReadKustomization(m.repoIO, filepath.Join(m.appDirRoot, "kustomization.yaml")) |
| if err != nil { |
| return nil, err |
| } |
| ret := make([]AppInstanceConfig, 0) |
| for _, app := range kust.Resources { |
| cfg, err := m.appConfig(filepath.Join(m.appDirRoot, app, "config.json")) |
| if err != nil { |
| return nil, err |
| } |
| cfg.Id = app |
| if cfg.AppId == name { |
| ret = append(ret, cfg) |
| } |
| } |
| return ret, nil |
| } |
| |
| func (m *AppManager) FindInstance(id string) (*AppInstanceConfig, error) { |
| kust, err := soft.ReadKustomization(m.repoIO, filepath.Join(m.appDirRoot, "kustomization.yaml")) |
| if err != nil { |
| return nil, err |
| } |
| for _, app := range kust.Resources { |
| if app == id { |
| cfg, err := m.appConfig(filepath.Join(m.appDirRoot, app, "config.json")) |
| if err != nil { |
| return nil, err |
| } |
| cfg.Id = id |
| return &cfg, nil |
| } |
| } |
| return nil, ErrorNotFound |
| } |
| |
| func GetCueAppData(fs soft.RepoFS, dir string) (CueAppData, error) { |
| files, err := fs.ListDir(dir) |
| if err != nil { |
| return nil, err |
| } |
| cfg := CueAppData{} |
| for _, f := range files { |
| if !f.IsDir() && strings.HasSuffix(f.Name(), ".cue") { |
| contents, err := soft.ReadFile(fs, filepath.Join(dir, f.Name())) |
| if err != nil { |
| return nil, err |
| } |
| cfg[f.Name()] = contents |
| } |
| } |
| return cfg, nil |
| } |
| |
| func (m *AppManager) GetInstanceApp(id string) (EnvApp, error) { |
| cfg, err := GetCueAppData(m.repoIO, filepath.Join(m.appDirRoot, id)) |
| if err != nil { |
| return nil, err |
| } |
| return NewCueEnvApp(cfg) |
| } |
| |
| type allocatePortReq struct { |
| Protocol string `json:"protocol"` |
| SourcePort int `json:"sourcePort"` |
| TargetService string `json:"targetService"` |
| TargetPort int `json:"targetPort"` |
| } |
| |
| func openPorts(ports []PortForward) error { |
| for _, p := range ports { |
| var buf bytes.Buffer |
| req := allocatePortReq{ |
| Protocol: p.Protocol, |
| SourcePort: p.SourcePort, |
| TargetService: p.TargetService, |
| TargetPort: p.TargetPort, |
| } |
| if err := json.NewEncoder(&buf).Encode(req); err != nil { |
| return err |
| } |
| resp, err := http.Post(p.Allocator, "application/json", &buf) |
| if err != nil { |
| return err |
| } |
| if resp.StatusCode != http.StatusOK { |
| return fmt.Errorf("Could not allocate port %d, status code: %d", p.SourcePort, resp.StatusCode) |
| } |
| } |
| return nil |
| } |
| |
| func createKustomizationChain(r soft.RepoFS, path string) error { |
| for p := filepath.Clean(path); p != "/"; { |
| parent, child := filepath.Split(p) |
| kustPath := filepath.Join(parent, "kustomization.yaml") |
| kust, err := soft.ReadKustomization(r, kustPath) |
| if err != nil { |
| if errors.Is(err, fs.ErrNotExist) { |
| k := io.NewKustomization() |
| kust = &k |
| } else { |
| return err |
| } |
| } |
| kust.AddResources(child) |
| if err := soft.WriteYaml(r, kustPath, kust); err != nil { |
| return err |
| } |
| p = filepath.Clean(parent) |
| } |
| return nil |
| } |
| |
| type Resource struct { |
| Name string `json:"name"` |
| Namespace string `json:"namespace"` |
| Info string `json:"info"` |
| } |
| |
| type ReleaseResources struct { |
| Helm []Resource |
| } |
| |
| // TODO(gio): rename to CommitApp |
| func installApp( |
| repo soft.RepoIO, |
| appDir string, |
| name string, |
| config any, |
| ports []PortForward, |
| resources CueAppData, |
| data CueAppData, |
| opts ...InstallOption, |
| ) (ReleaseResources, error) { |
| var o installOptions |
| for _, i := range opts { |
| i(&o) |
| } |
| dopts := []soft.DoOption{} |
| if o.Branch != "" { |
| dopts = append(dopts, soft.WithForce()) |
| dopts = append(dopts, soft.WithCommitToBranch(o.Branch)) |
| } |
| if o.NoPublish { |
| dopts = append(dopts, soft.WithNoCommit()) |
| } |
| return ReleaseResources{}, repo.Do(func(r soft.RepoFS) (string, error) { |
| if err := r.RemoveDir(appDir); err != nil { |
| return "", err |
| } |
| resourcesDir := path.Join(appDir, "resources") |
| if err := r.CreateDir(resourcesDir); err != nil { |
| return "", err |
| } |
| { |
| if err := soft.WriteYaml(r, path.Join(appDir, configFileName), config); err != nil { |
| return "", err |
| } |
| if err := soft.WriteJson(r, path.Join(appDir, "config.json"), config); err != nil { |
| return "", err |
| } |
| for name, contents := range data { |
| if name == "config.json" || name == "kustomization.yaml" || name == "resources" { |
| return "", fmt.Errorf("%s is forbidden", name) |
| } |
| w, err := r.Writer(path.Join(appDir, name)) |
| if err != nil { |
| return "", err |
| } |
| defer w.Close() |
| if _, err := w.Write(contents); err != nil { |
| return "", err |
| } |
| } |
| } |
| { |
| if err := createKustomizationChain(r, resourcesDir); err != nil { |
| return "", err |
| } |
| appKust := io.NewKustomization() |
| for name, contents := range resources { |
| appKust.AddResources(name) |
| w, err := r.Writer(path.Join(resourcesDir, name)) |
| if err != nil { |
| return "", err |
| } |
| defer w.Close() |
| if _, err := w.Write(contents); err != nil { |
| return "", err |
| } |
| } |
| if err := soft.WriteYaml(r, path.Join(resourcesDir, "kustomization.yaml"), appKust); err != nil { |
| return "", err |
| } |
| } |
| return fmt.Sprintf("install: %s", name), nil |
| }, dopts...) |
| } |
| |
| // TODO(gio): commit instanceId -> appDir mapping as well |
| func (m *AppManager) Install( |
| app EnvApp, |
| instanceId string, |
| appDir string, |
| namespace string, |
| values map[string]any, |
| opts ...InstallOption, |
| ) (ReleaseResources, error) { |
| o := &installOptions{} |
| for _, i := range opts { |
| i(o) |
| } |
| appDir = filepath.Clean(appDir) |
| if err := m.repoIO.Pull(); err != nil { |
| return ReleaseResources{}, err |
| } |
| if err := m.nsc.Create(namespace); err != nil { |
| return ReleaseResources{}, err |
| } |
| var env EnvConfig |
| if o.Env != nil { |
| env = *o.Env |
| } else { |
| var err error |
| env, err = m.Config() |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| } |
| var lg LocalChartGenerator |
| if o.LG != nil { |
| lg = o.LG |
| } else { |
| lg = GitRepositoryLocalChartGenerator{env.Id, env.Id} |
| } |
| release := Release{ |
| AppInstanceId: instanceId, |
| Namespace: namespace, |
| RepoAddr: m.repoIO.FullAddress(), |
| AppDir: appDir, |
| } |
| rendered, err := app.Render(release, env, values, nil) |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| imageRegistry := fmt.Sprintf("zot.%s", env.PrivateDomain) |
| if o.FetchContainerImages { |
| if err := pullContainerImages(instanceId, rendered.ContainerImages, imageRegistry, namespace, m.jc); err != nil { |
| return ReleaseResources{}, err |
| } |
| } |
| var localCharts map[string]helmv2.HelmChartTemplateSpec |
| if err := m.repoIO.Do(func(rfs soft.RepoFS) (string, error) { |
| charts, err := pullHelmCharts(m.hf, rendered.HelmCharts, rfs, "/helm-charts") |
| if err != nil { |
| return "", err |
| } |
| localCharts = generateLocalCharts(lg, charts) |
| return "pull helm charts", nil |
| }); err != nil { |
| return ReleaseResources{}, err |
| } |
| if o.FetchContainerImages { |
| release.ImageRegistry = imageRegistry |
| } |
| rendered, err = app.Render(release, env, values, localCharts) |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| if _, err := installApp(m.repoIO, appDir, rendered.Name, rendered.Config, rendered.Ports, rendered.Resources, rendered.Data, opts...); err != nil { |
| return ReleaseResources{}, err |
| } |
| // TODO(gio): add ingress-nginx to release resources |
| if err := openPorts(rendered.Ports); err != nil { |
| return ReleaseResources{}, err |
| } |
| return ReleaseResources{ |
| Helm: extractHelm(rendered.Resources), |
| }, nil |
| } |
| |
| type helmRelease struct { |
| Metadata struct { |
| Name string `json:"name"` |
| Namespace string `json:"namespace"` |
| Annotations map[string]string `json:"annotations"` |
| } `json:"metadata"` |
| Kind string `json:"kind"` |
| Status struct { |
| Conditions []struct { |
| Type string `json:"type"` |
| Status string `json:"status"` |
| } `json:"conditions"` |
| } `json:"status,omitempty"` |
| } |
| |
| func extractHelm(resources CueAppData) []Resource { |
| ret := make([]Resource, 0, len(resources)) |
| for _, contents := range resources { |
| var h helmRelease |
| if err := yaml.Unmarshal(contents, &h); err != nil { |
| panic(err) // TODO(gio): handle |
| } |
| if h.Kind == "HelmRelease" { |
| res := Resource{ |
| Name: h.Metadata.Name, |
| Namespace: h.Metadata.Namespace, |
| Info: fmt.Sprintf("%s/%s", h.Metadata.Namespace, h.Metadata.Name), |
| } |
| if h.Metadata.Annotations != nil { |
| info, ok := h.Metadata.Annotations["dodo.cloud/installer-info"] |
| if ok && len(info) != 0 { |
| res.Info = info |
| } |
| } |
| ret = append(ret, res) |
| } |
| } |
| return ret |
| } |
| |
| // TODO(gio): take app configuration from the repo |
| func (m *AppManager) Update( |
| instanceId string, |
| values map[string]any, |
| opts ...InstallOption, |
| ) (ReleaseResources, error) { |
| if err := m.repoIO.Pull(); err != nil { |
| return ReleaseResources{}, err |
| } |
| env, err := m.Config() |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| instanceDir := filepath.Join(m.appDirRoot, instanceId) |
| app, err := m.GetInstanceApp(instanceId) |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| instanceConfigPath := filepath.Join(instanceDir, "config.json") |
| config, err := m.appConfig(instanceConfigPath) |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| localCharts, err := extractLocalCharts(m.repoIO, filepath.Join(instanceDir, "rendered.json")) |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| rendered, err := app.Render(config.Release, env, values, localCharts) |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| return installApp(m.repoIO, instanceDir, rendered.Name, rendered.Config, rendered.Ports, rendered.Resources, rendered.Data, opts...) |
| } |
| |
| func (m *AppManager) Remove(instanceId string) error { |
| if err := m.repoIO.Pull(); err != nil { |
| return err |
| } |
| return m.repoIO.Do(func(r soft.RepoFS) (string, error) { |
| r.RemoveDir(filepath.Join(m.appDirRoot, instanceId)) |
| kustPath := filepath.Join(m.appDirRoot, "kustomization.yaml") |
| kust, err := soft.ReadKustomization(r, kustPath) |
| if err != nil { |
| return "", err |
| } |
| kust.RemoveResources(instanceId) |
| soft.WriteYaml(r, kustPath, kust) |
| return fmt.Sprintf("uninstall: %s", instanceId), nil |
| }) |
| } |
| |
| // TODO(gio): deduplicate with cue definition in app.go, this one should be removed. |
| func CreateNetworks(env EnvConfig) []Network { |
| return []Network{ |
| { |
| Name: "Public", |
| IngressClass: fmt.Sprintf("%s-ingress-public", env.InfraName), |
| CertificateIssuer: fmt.Sprintf("%s-public", env.Id), |
| Domain: env.Domain, |
| AllocatePortAddr: fmt.Sprintf("http://port-allocator.%s-ingress-public.svc.cluster.local/api/allocate", env.InfraName), |
| }, |
| { |
| Name: "Private", |
| IngressClass: fmt.Sprintf("%s-ingress-private", env.Id), |
| Domain: env.PrivateDomain, |
| AllocatePortAddr: fmt.Sprintf("http://port-allocator.%s-ingress-private.svc.cluster.local/api/allocate", env.Id), |
| }, |
| } |
| } |
| |
| type installOptions struct { |
| NoPublish bool |
| Env *EnvConfig |
| Branch string |
| LG LocalChartGenerator |
| FetchContainerImages bool |
| } |
| |
| type InstallOption func(*installOptions) |
| |
| func WithConfig(env *EnvConfig) InstallOption { |
| return func(o *installOptions) { |
| o.Env = env |
| } |
| } |
| |
| func WithBranch(branch string) InstallOption { |
| return func(o *installOptions) { |
| o.Branch = branch |
| } |
| } |
| |
| func WithLocalChartGenerator(lg LocalChartGenerator) InstallOption { |
| return func(o *installOptions) { |
| o.LG = lg |
| } |
| } |
| |
| func WithFetchContainerImages() InstallOption { |
| return func(o *installOptions) { |
| o.FetchContainerImages = true |
| } |
| } |
| |
| func WithNoPublish() InstallOption { |
| return func(o *installOptions) { |
| o.NoPublish = true |
| } |
| } |
| |
| // InfraAppmanager |
| |
| type InfraAppManager struct { |
| repoIO soft.RepoIO |
| nsc NamespaceCreator |
| hf HelmFetcher |
| lg LocalChartGenerator |
| } |
| |
| func NewInfraAppManager( |
| repoIO soft.RepoIO, |
| nsc NamespaceCreator, |
| hf HelmFetcher, |
| lg LocalChartGenerator, |
| ) (*InfraAppManager, error) { |
| return &InfraAppManager{ |
| repoIO, |
| nsc, |
| hf, |
| lg, |
| }, nil |
| } |
| |
| func (m *InfraAppManager) Config() (InfraConfig, error) { |
| var cfg InfraConfig |
| if err := soft.ReadYaml(m.repoIO, configFileName, &cfg); err != nil { |
| return InfraConfig{}, err |
| } else { |
| return cfg, nil |
| } |
| } |
| |
| func (m *InfraAppManager) appConfig(path string) (InfraAppInstanceConfig, error) { |
| var cfg InfraAppInstanceConfig |
| if err := soft.ReadJson(m.repoIO, path, &cfg); err != nil { |
| return InfraAppInstanceConfig{}, err |
| } else { |
| return cfg, nil |
| } |
| } |
| |
| func (m *InfraAppManager) FindInstance(id string) (InfraAppInstanceConfig, error) { |
| kust, err := soft.ReadKustomization(m.repoIO, filepath.Join("/infrastructure", "kustomization.yaml")) |
| if err != nil { |
| return InfraAppInstanceConfig{}, err |
| } |
| for _, app := range kust.Resources { |
| if app == id { |
| cfg, err := m.appConfig(filepath.Join("/infrastructure", app, "config.json")) |
| if err != nil { |
| return InfraAppInstanceConfig{}, err |
| } |
| cfg.Id = id |
| return cfg, nil |
| } |
| } |
| return InfraAppInstanceConfig{}, nil |
| } |
| |
| func (m *InfraAppManager) Install(app InfraApp, appDir string, namespace string, values map[string]any) (ReleaseResources, error) { |
| appDir = filepath.Clean(appDir) |
| if err := m.repoIO.Pull(); err != nil { |
| return ReleaseResources{}, err |
| } |
| if err := m.nsc.Create(namespace); err != nil { |
| return ReleaseResources{}, err |
| } |
| infra, err := m.Config() |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| release := Release{ |
| Namespace: namespace, |
| RepoAddr: m.repoIO.FullAddress(), |
| AppDir: appDir, |
| } |
| rendered, err := app.Render(release, infra, values, nil) |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| var localCharts map[string]helmv2.HelmChartTemplateSpec |
| if err := m.repoIO.Do(func(rfs soft.RepoFS) (string, error) { |
| charts, err := pullHelmCharts(m.hf, rendered.HelmCharts, rfs, "/helm-charts") |
| if err != nil { |
| return "", err |
| } |
| localCharts = generateLocalCharts(m.lg, charts) |
| return "pull helm charts", nil |
| }); err != nil { |
| return ReleaseResources{}, err |
| } |
| rendered, err = app.Render(release, infra, values, localCharts) |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| return installApp(m.repoIO, appDir, rendered.Name, rendered.Config, rendered.Ports, rendered.Resources, rendered.Data) |
| } |
| |
| // TODO(gio): take app configuration from the repo |
| func (m *InfraAppManager) Update( |
| instanceId string, |
| values map[string]any, |
| opts ...InstallOption, |
| ) (ReleaseResources, error) { |
| if err := m.repoIO.Pull(); err != nil { |
| return ReleaseResources{}, err |
| } |
| env, err := m.Config() |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| instanceDir := filepath.Join("/infrastructure", instanceId) |
| appCfg, err := GetCueAppData(m.repoIO, instanceDir) |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| app, err := NewCueInfraApp(appCfg) |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| instanceConfigPath := filepath.Join(instanceDir, "config.json") |
| config, err := m.appConfig(instanceConfigPath) |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| localCharts, err := extractLocalCharts(m.repoIO, filepath.Join(instanceDir, "rendered.json")) |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| rendered, err := app.Render(config.Release, env, values, localCharts) |
| if err != nil { |
| return ReleaseResources{}, err |
| } |
| return installApp(m.repoIO, instanceDir, rendered.Name, rendered.Config, rendered.Ports, rendered.Resources, rendered.Data, opts...) |
| } |
| |
| func pullHelmCharts(hf HelmFetcher, charts HelmCharts, rfs soft.RepoFS, root string) (map[string]string, error) { |
| ret := make(map[string]string) |
| for name, chart := range charts.Git { |
| chartRoot := filepath.Join(root, name) |
| ret[name] = chartRoot |
| if err := hf.Pull(chart, rfs, chartRoot); err != nil { |
| return nil, err |
| } |
| } |
| return ret, nil |
| } |
| |
| func generateLocalCharts(g LocalChartGenerator, charts map[string]string) map[string]helmv2.HelmChartTemplateSpec { |
| ret := make(map[string]helmv2.HelmChartTemplateSpec) |
| for name, path := range charts { |
| ret[name] = g.Generate(path) |
| } |
| return ret |
| } |
| |
| func pullContainerImages(appName string, imgs map[string]ContainerImage, registry, namespace string, jc JobCreator) error { |
| for _, img := range imgs { |
| name := fmt.Sprintf("copy-image-%s-%s-%s-%s", appName, img.Repository, img.Name, img.Tag) |
| if err := jc.Create(name, namespace, "giolekva/skopeo:latest", []string{ |
| "skopeo", |
| "--insecure-policy", |
| "copy", |
| "--dest-tls-verify=false", // TODO(gio): enable |
| "--multi-arch=all", |
| fmt.Sprintf("docker://%s/%s/%s:%s", img.Registry, img.Repository, img.Name, img.Tag), |
| fmt.Sprintf("docker://%s/%s/%s:%s", registry, img.Repository, img.Name, img.Tag), |
| }); err != nil { |
| return err |
| } |
| } |
| return nil |
| } |
| |
| type renderedInstance struct { |
| LocalCharts map[string]helmv2.HelmChartTemplateSpec `json:"localCharts"` |
| } |
| |
| func extractLocalCharts(fs soft.RepoFS, path string) (map[string]helmv2.HelmChartTemplateSpec, error) { |
| r, err := fs.Reader(path) |
| if err != nil { |
| return nil, err |
| } |
| defer r.Close() |
| var cfg renderedInstance |
| if err := json.NewDecoder(r).Decode(&cfg); err != nil { |
| return nil, err |
| } |
| return cfg.LocalCharts, nil |
| } |