Skip to content

Commit d45f67b

Browse files
committed
fix(cli/orchs): Remove --exp flag from the orchs sub CLIs
Signed-off-by: spbsoluble <1661003+spbsoluble@users.noreply.github.com>
1 parent 0799e85 commit d45f67b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

cmd/orchs.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ var getOrchestratorCmd = &cobra.Command{
3636
Short: "Get orchestrator by machine/client name.",
3737
Long: `Get orchestrator by machine/client name.`,
3838
Run: func(cmd *cobra.Command, args []string) {
39-
isExperimental := true
39+
isExperimental := false
4040

4141
_, expErr := isExperimentalFeatureEnabled(expEnabled, isExperimental)
4242
if expErr != nil {
@@ -68,7 +68,7 @@ var approveOrchestratorCmd = &cobra.Command{
6868
Short: "Approve orchestrator by machine/client name.",
6969
Long: `Approve orchestrator by machine/client name.`,
7070
Run: func(cmd *cobra.Command, args []string) {
71-
isExperimental := true
71+
isExperimental := false
7272

7373
_, expErr := isExperimentalFeatureEnabled(expEnabled, isExperimental)
7474
if expErr != nil {
@@ -106,7 +106,7 @@ var disapproveOrchestratorCmd = &cobra.Command{
106106
Long: `Disapprove orchestrator by machine/client name.`,
107107
Run: func(cmd *cobra.Command, args []string) {
108108

109-
isExperimental := true
109+
isExperimental := false
110110

111111
_, expErr := isExperimentalFeatureEnabled(expEnabled, isExperimental)
112112
if expErr != nil {
@@ -153,7 +153,7 @@ var getLogsOrchestratorCmd = &cobra.Command{
153153
Short: "Get orchestrator logs by machine/client name.",
154154
Long: `Get orchestrator logs by machine/client name.`,
155155
Run: func(cmd *cobra.Command, args []string) {
156-
isExperimental := true
156+
isExperimental := false
157157

158158
_, expErr := isExperimentalFeatureEnabled(expEnabled, isExperimental)
159159
if expErr != nil {
@@ -191,7 +191,7 @@ var listOrchestratorsCmd = &cobra.Command{
191191
Short: "List orchestrators.",
192192
Long: `Returns a JSON list of Keyfactor orchestrators.`,
193193
Run: func(cmd *cobra.Command, args []string) {
194-
isExperimental := true
194+
isExperimental := false
195195

196196
_, expErr := isExperimentalFeatureEnabled(expEnabled, isExperimental)
197197
if expErr != nil {

0 commit comments

Comments
 (0)