aws / copilot-cli

The AWS Copilot CLI is a tool for developers to build, release and operate production ready containerized applications on AWS App Runner or Amazon ECS on AWS Fargate.
https://aws.github.io/copilot-cli/
Apache License 2.0
3.48k stars 403 forks source link

Proposal: display deployed status of workloads in app show #3366

Open paragbhingre opened 2 years ago

paragbhingre commented 2 years ago

Currently app show displays only name and type of the workload (i.e. services and jobs).

copilot app show

Workloads

  Name             Type
  ----             ----
  apprunner        Request-Driven Web Service
  firstjob         Scheduled Job

After we add the functionality to display deployed status on workload it will look like

copilot app show

Workloads

  Name             Type                         Deployed Status
  ----             ----                         ----
  apprunner        Request-Driven Web Service   Deployed
  firstjob         Scheduled Job                Not Deployed
Lou1415926 commented 2 years ago

What do folks think about something like this

Workloads

  Name             Type                         Deployed to
  ----             ----                         ----
  apprunner        Request-Driven Web Service   prod, test
  firstjob         Scheduled Job                test

so that it's clear what env's the workloads' deployed to?

huanjani commented 2 years ago

I was about to say the same thing. Maybe mention "environment(s)" in the heading to be even clearer.