Skip to content

Commit

Permalink
move cli to flamingo repo
Browse files Browse the repository at this point in the history
Signed-off-by: Chanwit Kaewkasi <chanwit@gmail.com>
  • Loading branch information
chanwit committed Oct 30, 2023
1 parent d58bd38 commit 1ce3f6e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Generate release manifests
run: |
mkdir -p output
echo '[CHANGELOG](https://github.com/flux-subsystem-argo/cli/blob/main/CHANGELOG.md)' > output/notes.md
echo '[CHANGELOG](https://github.com/flux-subsystem-argo/flamingo/blob/main/CHANGELOG.md)' > output/notes.md
- name: Get server version
id: get-server-version
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Flamingo - the Flux Subsystem for Argo

> 🚀🚀🚀 **BREAKING:** Introducing the new [Flamingo CLI](https://github.com/flux-subsystem-argo/cli)! 🚀🚀🚀
> 🚀🚀🚀 **BREAKING:** Introducing the new [Flamingo CLI](https://github.com/flux-subsystem-argo/flamingo)! 🚀🚀🚀
Flamingo is the **Flux Subsystem for Argo** (FSA). Flamingo's container image can be used as a drop-in extension for the equivalent ArgoCD version to visualize, and manage Flux workloads, alongside ArgoCD. You can also ensure that upstream CVEs in Argo CD are quickly backported to Flamingo, maintaining a secure and stable environment.

Expand Down
2 changes: 1 addition & 1 deletion cmd/flamingo/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"context"

"github.com/flux-subsystem-argo/cli/pkg/utils"
"github.com/flux-subsystem-argo/flamingo/pkg/utils"
"github.com/spf13/cobra"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime/schema"
Expand Down
2 changes: 1 addition & 1 deletion cmd/flamingo/generate_app.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"
"strings"

"github.com/flux-subsystem-argo/cli/pkg/utils"
"github.com/flux-subsystem-argo/flamingo/pkg/utils"
helmv2b1 "github.com/fluxcd/helm-controller/api/v2beta1"
kustomizev1 "github.com/fluxcd/kustomize-controller/api/v1"
"github.com/spf13/cobra"
Expand Down
2 changes: 1 addition & 1 deletion cmd/flamingo/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"context"
"fmt"
"github.com/flux-subsystem-argo/cli/pkg/utils"
"github.com/flux-subsystem-argo/flamingo/pkg/utils"
"github.com/spf13/cobra"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime/schema"
Expand Down
2 changes: 1 addition & 1 deletion cmd/flamingo/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"text/template"
"time"

"github.com/flux-subsystem-argo/cli/pkg/utils"
"github.com/flux-subsystem-argo/flamingo/pkg/utils"
"github.com/fluxcd/flux2/v2/pkg/status"
"github.com/spf13/cobra"
"k8s.io/apimachinery/pkg/runtime/schema"
Expand Down
2 changes: 1 addition & 1 deletion cmd/flamingo/list_candidates.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/spf13/cobra"
)

const url = "https://raw.githubusercontent.com/flux-subsystem-argo/cli/main/index/index.json"
const url = "https://raw.githubusercontent.com/flux-subsystem-argo/flamingo/main/index/index.json"

var listCandidates = &cobra.Command{
Use: "list-candidates",
Expand Down
2 changes: 1 addition & 1 deletion cmd/flamingo/show_init_password.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"fmt"

"github.com/flux-subsystem-argo/cli/pkg/utils"
"github.com/flux-subsystem-argo/flamingo/pkg/utils"
"github.com/spf13/cobra"
corev1 "k8s.io/api/core/v1"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/flux-subsystem-argo/cli
module github.com/flux-subsystem-argo/flamingo

go 1.20

Expand Down

0 comments on commit 1ce3f6e

Please sign in to comment.