Skip to content

Commit 0991901

Browse files
authored
fix(trigger-argo-workflow): treat AWS ops instance as Argo Workflows ops (#504)
* treat aws ops as argo wfs ops * replace with aws ops instance
1 parent 8607dba commit 0991901

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

actions/trigger-argo-workflow/action.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Trigger an Argo workflow in the Grafana Labs Argo Workflows instanc
44
inputs:
55
instance:
66
description: |
7-
The instance to use (`dev`, `ops` or `ops-aws`). Defaults to `ops`.
7+
The instance to use (`dev` or `ops`). Defaults to `ops`.
88
default: ops
99
namespace:
1010
description: |
@@ -75,10 +75,6 @@ runs:
7575
vault_instance="dev"
7676
;;
7777
ops)
78-
cluster="ops-us-east-0"
79-
vault_instance="ops"
80-
;;
81-
ops-aws)
8278
cluster="ops-eu-south-0"
8379
vault_instance="ops"
8480
;;

actions/trigger-argo-workflow/cmd/trigger-argo-workflow/argo.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ type App struct {
3535
var instanceToHost = map[string]string{
3636
"dev": "argo-workflows-dev.grafana.net:443",
3737
"ops": "argo-workflows.grafana.net:443",
38-
"ops-aws": "argo-workflows-aws.grafana.net:443",
3938
}
4039

4140
func (a App) server() string {

0 commit comments

Comments
 (0)