Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions go/deploy-cli/main.go

This file was deleted.

File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ builds:
- CGO_ENABLED=0
goos: ["linux", "darwin", "windows"]
goarch: ["386", "amd64", "arm64"]
binary: deploy-cli
binary: understack
ldflags:
- -s -w -X "main.version={{.Version}}"

Expand Down
7 changes: 3 additions & 4 deletions go/deploy-cli/README.md → go/understack/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# undercloud-deploy-cli
# understack

Undercloud Deploy cli helps quickly generate undercloud-deploy config files.
UnderStack CLI helps quickly generate a deployment repository.


## How to use.
## How to use

> Please make sure that you have kubeseal binary installed your system https://github.com/bitnami-labs/sealed-secrets

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"
"path/filepath"

"github.com/rackerlabs/understack/go/deploy-cli/cmd"
"github.com/rackerlabs/understack/go/deploy-cli/helpers"
"github.com/rackerlabs/understack/go/understack/cmd"
"github.com/rackerlabs/understack/go/understack/helpers"

"github.com/charmbracelet/log"
"github.com/gookit/goutil/envutil"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"os"

"github.com/rackerlabs/understack/go/deploy-cli/cmd"
"github.com/rackerlabs/understack/go/deploy-cli/helpers"
"github.com/rackerlabs/understack/go/understack/cmd"
"github.com/rackerlabs/understack/go/understack/helpers"

"github.com/charmbracelet/log"
"github.com/gookit/goutil/envutil"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"path/filepath"

"github.com/rackerlabs/understack/go/deploy-cli/cmd"
"github.com/rackerlabs/understack/go/deploy-cli/helpers"
"github.com/rackerlabs/understack/go/understack/cmd"
"github.com/rackerlabs/understack/go/understack/helpers"

"github.com/charmbracelet/log"
"github.com/gookit/goutil/envutil"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"os"
"path/filepath"

"github.com/rackerlabs/understack/go/deploy-cli/cmd"
"github.com/rackerlabs/understack/go/deploy-cli/helpers"
"github.com/rackerlabs/understack/go/understack/cmd"
"github.com/rackerlabs/understack/go/understack/helpers"

"github.com/gookit/goutil/envutil"
"github.com/gookit/goutil/fsutil"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import (
"os"
"os/exec"

"github.com/rackerlabs/understack/go/deploy-cli/cmd"
"github.com/rackerlabs/understack/go/deploy-cli/cmd/argocd"
"github.com/rackerlabs/understack/go/deploy-cli/cmd/certManager"
"github.com/rackerlabs/understack/go/deploy-cli/cmd/dex"
"github.com/rackerlabs/understack/go/deploy-cli/cmd/helmConfig"
"github.com/rackerlabs/understack/go/deploy-cli/cmd/node"
"github.com/rackerlabs/understack/go/deploy-cli/cmd/openstack"
"github.com/rackerlabs/understack/go/deploy-cli/cmd/other"
"github.com/rackerlabs/understack/go/understack/cmd"
"github.com/rackerlabs/understack/go/understack/cmd/argocd"
"github.com/rackerlabs/understack/go/understack/cmd/certManager"
"github.com/rackerlabs/understack/go/understack/cmd/dex"
"github.com/rackerlabs/understack/go/understack/cmd/helmConfig"
"github.com/rackerlabs/understack/go/understack/cmd/node"
"github.com/rackerlabs/understack/go/understack/cmd/openstack"
"github.com/rackerlabs/understack/go/understack/cmd/other"

"github.com/charmbracelet/log"
"github.com/gookit/goutil/envutil"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"os"

"github.com/rackerlabs/understack/go/deploy-cli/cmd"
"github.com/rackerlabs/understack/go/deploy-cli/helpers"
"github.com/rackerlabs/understack/go/understack/cmd"
"github.com/rackerlabs/understack/go/understack/helpers"

"github.com/charmbracelet/log"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package openstack

import (
"github.com/rackerlabs/understack/go/deploy-cli/cmd"
"github.com/rackerlabs/understack/go/deploy-cli/helpers"
"github.com/rackerlabs/understack/go/understack/cmd"
"github.com/rackerlabs/understack/go/understack/helpers"

"github.com/charmbracelet/log"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"os"
"path/filepath"

"github.com/rackerlabs/understack/go/deploy-cli/cmd"
"github.com/rackerlabs/understack/go/deploy-cli/helpers"
"github.com/rackerlabs/understack/go/understack/cmd"
"github.com/rackerlabs/understack/go/understack/helpers"

"github.com/charmbracelet/log"
"github.com/gookit/goutil/envutil"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion go/deploy-cli/go.mod → go/understack/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/rackerlabs/understack/go/deploy-cli
module github.com/rackerlabs/understack/go/understack

go 1.23.6

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
22 changes: 22 additions & 0 deletions go/understack/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package main

import (
"os"

"github.com/rackerlabs/understack/go/understack/cmd"
_ "github.com/rackerlabs/understack/go/understack/cmd/argocd"
_ "github.com/rackerlabs/understack/go/understack/cmd/certManager"
_ "github.com/rackerlabs/understack/go/understack/cmd/dex"
_ "github.com/rackerlabs/understack/go/understack/cmd/helmConfig"
_ "github.com/rackerlabs/understack/go/understack/cmd/init"
_ "github.com/rackerlabs/understack/go/understack/cmd/node"
_ "github.com/rackerlabs/understack/go/understack/cmd/openstack"
_ "github.com/rackerlabs/understack/go/understack/cmd/other"
)

func main() {
err := cmd.Execute()
if err != nil {
os.Exit(1)
}
}
Loading