mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-08 16:06:47 +00:00
**What** - Use the compose-go library to read the service definitions from an external compose file instead of building them in Go - Add default compose file and copy during `faasd install` - Add test for load and parse of compose file - Make testing easier by sorting the env keys - Allow append to instantiate the slices so that we can more easily test for proper parsing (e.g. nil is still nil etc) - Add the arch suffix to the compose file and set this as part of the env when we parse the compose file. This allows faasd to dynamically set the arch suffix used for the basic auth and the gateway images. Signed-off-by: Lucas Roesler <roesler.lucas@gmail.com>
139 lines
2.5 KiB
Go
139 lines
2.5 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"path"
|
|
|
|
systemd "github.com/openfaas/faasd/pkg/systemd"
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var installCmd = &cobra.Command{
|
|
Use: "install",
|
|
Short: "Install faasd",
|
|
RunE: runInstall,
|
|
}
|
|
|
|
const workingDirectoryPermission = 0644
|
|
|
|
const faasdwd = "/var/lib/faasd"
|
|
|
|
const faasdProviderWd = "/var/lib/faasd-provider"
|
|
|
|
func runInstall(_ *cobra.Command, _ []string) error {
|
|
|
|
if err := ensureWorkingDir(path.Join(faasdwd, "secrets")); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := ensureWorkingDir(faasdProviderWd); err != nil {
|
|
return err
|
|
}
|
|
|
|
if basicAuthErr := makeBasicAuthFiles(path.Join(faasdwd, "secrets")); basicAuthErr != nil {
|
|
return errors.Wrap(basicAuthErr, "cannot create basic-auth-* files")
|
|
}
|
|
|
|
if err := cp("docker-compose.yaml", faasdwd); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := cp("prometheus.yml", faasdwd); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := cp("resolv.conf", faasdwd); err != nil {
|
|
return err
|
|
}
|
|
|
|
err := binExists("/usr/local/bin/", "faasd")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = systemd.InstallUnit("faasd-provider", map[string]string{
|
|
"Cwd": faasdProviderWd,
|
|
"SecretMountPath": path.Join(faasdwd, "secrets")})
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = systemd.InstallUnit("faasd", map[string]string{"Cwd": faasdwd})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = systemd.DaemonReload()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = systemd.Enable("faasd-provider")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = systemd.Enable("faasd")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = systemd.Start("faasd-provider")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = systemd.Start("faasd")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Println(`Login with:
|
|
sudo cat /var/lib/faasd/secrets/basic-auth-password | faas-cli login -s`)
|
|
|
|
return nil
|
|
}
|
|
|
|
func binExists(folder, name string) error {
|
|
findPath := path.Join(folder, name)
|
|
if _, err := os.Stat(findPath); err != nil {
|
|
return fmt.Errorf("unable to stat %s, install this binary before continuing", findPath)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func ensureWorkingDir(folder string) error {
|
|
if _, err := os.Stat(folder); err != nil {
|
|
err = os.MkdirAll(folder, workingDirectoryPermission)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func cp(source, destFolder string) error {
|
|
file, err := os.Open(source)
|
|
if err != nil {
|
|
return err
|
|
|
|
}
|
|
defer file.Close()
|
|
|
|
out, err := os.Create(path.Join(destFolder, source))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer out.Close()
|
|
|
|
_, err = io.Copy(out, file)
|
|
|
|
return err
|
|
}
|