@@ -213,7 +213,7 @@ func getProfileState(wf *AddWorkflow) (nextState optionals.Optional[AddWorkflowS
213
213
214
214
err = survey .AskOne (
215
215
& survey.Input {
216
- Message : "Which of your AWS profiles should Akita use to configure ECS?" ,
216
+ Message : "Which of your AWS profiles should be used to configure ECS?" ,
217
217
Help : "Enter the name of the AWS profile you use for configuring ECS, or leave blank to try the default profile. Akita needs this information to identify which AWS credentials to use." ,
218
218
// Use the existing value as the default in case we repeat this step
219
219
Default : wf .awsProfile ,
@@ -485,7 +485,7 @@ func getTaskState(wf *AddWorkflow) (nextState optionals.Optional[AddWorkflowStat
485
485
var taskAnswer string
486
486
err = survey .AskOne (
487
487
& survey.Select {
488
- Message : "Which task should Akita monitor ?" ,
488
+ Message : "Which task should be monitored ?" ,
489
489
Help : "Select the ECS task definition to modify. We will add the Postman Live Collections Agent as a sidecar to the task." ,
490
490
Options : tasks ,
491
491
},
@@ -529,11 +529,11 @@ func getTaskState(wf *AddWorkflow) (nextState optionals.Optional[AddWorkflowStat
529
529
}
530
530
}
531
531
532
- // Check that the Akita CLI is not already present
532
+ // Check that the postman-lc-agent is not already present
533
533
for _ , container := range output .ContainerDefinitions {
534
534
image := aws .ToString (container .Image )
535
535
if matchesImage (image , postmanECRImage ) || matchesImage (image , akitaECRImage ) || matchesImage (image , akitaDockerImage ) {
536
- printer .Errorf ("The selected task definition already has the image %q; Akita is already installed.\n " , image )
536
+ printer .Errorf ("The selected task definition already has the image %q; postman-lc-agent is already installed.\n " , image )
537
537
printer .Infof ("Please select a different task definition, or hit Ctrl+C to exit.\n " )
538
538
return awf_next (getTaskState )
539
539
}
@@ -614,7 +614,7 @@ func getServiceState(wf *AddWorkflow) (nextState optionals.Optional[AddWorkflowS
614
614
err = survey .AskOne (
615
615
& survey.Select {
616
616
Message : "Which service should be updated to use the modified task definition?" ,
617
- Help : "Select the ECS service that will be updated with the modified task definition, so it can be monitored by Akita ." ,
617
+ Help : "Select the ECS service that will be updated with the modified task definition, so it can be monitored." ,
618
618
Options : choices ,
619
619
Description : func (value string , _ int ) string {
620
620
return services [arn (value )]
@@ -808,7 +808,7 @@ func addSecretState(wf *AddWorkflow) (nextState optionals.Optional[AddWorkflowSt
808
808
return awf_next (modifyTaskState )
809
809
}
810
810
811
- // Create a new revision of the task definition which includes the Akita container.
811
+ // Create a new revision of the task definition which includes the postman-lc-agent container.
812
812
func modifyTaskState (wf * AddWorkflow ) (nextState optionals.Optional [AddWorkflowState ], err error ) {
813
813
reportStep ("Modify ECS Task Definition" )
814
814
0 commit comments