diff --git a/internal/cmd/local/docker/docker.go b/internal/cmd/local/docker/docker.go index b7d6653..7f4e242 100644 --- a/internal/cmd/local/docker/docker.go +++ b/internal/cmd/local/docker/docker.go @@ -179,7 +179,7 @@ func (d *Docker) Port(ctx context.Context, container string) (int, error) { const migratePGDATA = "/var/lib/postgresql/data" // MigrateComposeDB handles migrating the existing docker compose database into the abctl managed k8s cluster. -// TODO: move this method of the the docker class? +// TODO: move this method out of the the docker class? func (d *Docker) MigrateComposeDB(ctx context.Context, volume string) error { if v := d.volumeExists(ctx, volume); v == "" { return errors.New(fmt.Sprintf("volume %s does not exist", volume)) diff --git a/internal/cmd/local/local_install.go b/internal/cmd/local/local_install.go index 066cda2..f7803f3 100644 --- a/internal/cmd/local/local_install.go +++ b/internal/cmd/local/local_install.go @@ -102,7 +102,6 @@ func NewCmdInstall(provider k8s.Provider) *cobra.Command { return err } pterm.Success.Printfln("Cluster '%s' created", provider.ClusterName) - // TODO: create volumes } lc, err := local.New(provider,