You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: aws added tag data function to get any type ofresource tags and match with a expected set of tags
this is now used within mac-pool request operation on remote mode...to get the fargate task spec to run request through it
Signed-off-by: Adrian Riobo <[email protected]>
Copy file name to clipboardExpand all lines: cmd/mapt/cmd/constants/constants.go
+9-6Lines changed: 9 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -77,8 +77,9 @@ const (
77
77
RhelVersionDefaultstring="9.4"
78
78
79
79
// Serverless
80
-
Timeoutstring="timeout"
81
-
TimeoutDescstring="if timeout is set a serverless destroy actions will be set on the time according to the timeout. The Timeout value is a duration conforming to Go ParseDuration format."
80
+
Timeoutstring="timeout"
81
+
TimeoutDescstring="if timeout is set a serverless destroy actions will be set on the time according to the timeout. The Timeout value is a duration conforming to Go ParseDuration format."
82
+
// TODO we should be able to know if it is being executed serverless just checking the ENVs??
82
83
Serverlessstring="serverless"
83
84
ServerlessDescstring="if serverless is set the command will be executed as a serverless action."
84
85
@@ -87,10 +88,12 @@ const (
87
88
ForceDestroyDescstring="if force-destroy is set the command will destroy even if there is a lock."
88
89
89
90
// Kind
90
-
KindCmd="kind"
91
-
KindCmdDesc="Manage a Kind cluster. This is not intended for production use"
92
-
KindK8SVersion="version"
93
-
KindK8SVersionDesc="version for k8s offered through Kind."
91
+
KindCmd="kind"
92
+
KindCmdDesc="Manage a Kind cluster. This is not intended for production use"
93
+
KindK8SVersion="version"
94
+
KindK8SVersionDesc="version for k8s offered through Kind."
95
+
Remotestring="remote"
96
+
RemoteDescstring="if remote is set the command will be executed through the invocation of a serverless task"
0 commit comments