Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: include buildstep in deployment get, list #388

Merged
merged 1 commit into from
Oct 22, 2024
Merged

Conversation

shreddedbacon
Copy link
Member

General Checklist

  • Affected Issues have been mentioned in the Closing issues section
  • Documentation has been written/updated
  • PR title is ready for inclusion in changelog

Update get and list deployments to include the buildStep. Move the fields remoteId and created fields into a new --wide flag to reduce the information displayed to only more relevant information.

Example of how this looks

$ lagoon list deployments -p example-project -e test
ID     	NAME               	STATUS  	BUILDSTEP                  	STARTED            	COMPLETED
234    	lagoon-build-j85815	complete	deployCompletedWithWarnings	2024-10-03 14:43:50	2024-10-03 14:47:05
233    	lagoon-build-q9h7a6	failed  	runningPostRolloutTasks    	2024-10-03 14:28:02	2024-10-03 14:31:48
232    	lagoon-build-lxec85	failed  	runningPostRolloutTasks    	2024-10-03 11:23:06	2024-10-03 11:30:20

$ lagoon list deployments -p example-project -e test --wide
ID     	NAME               	STATUS  	BUILDSTEP                  	STARTED            	COMPLETED          	CREATED            	REMOTEID
234    	lagoon-build-j85815	complete	deployCompletedWithWarnings	2024-10-03 14:43:50	2024-10-03 14:47:05	2024-10-03 14:43:49	010f5f74-0063-4ffc-94c2-62df2c7f4f0e
233    	lagoon-build-q9h7a6	failed  	runningPostRolloutTasks    	2024-10-03 14:28:02	2024-10-03 14:31:48	2024-10-03 14:28:01	f2562e43-026b-493e-889b-7e1ed2cada61
232    	lagoon-build-lxec85	failed  	runningPostRolloutTasks    	2024-10-03 11:23:06	2024-10-03 11:30:20	2024-10-03 11:23:06	aabf6436-a843-4eb6-8953-70d4515f3982

$ lagoon get deployment -p example-project -e test --name lagoon-build-q9h7a6
ID     	NAME               	STATUS	BUILDSTEP              	STARTED            	COMPLETED
233    	lagoon-build-q9h7a6	failed	runningPostRolloutTasks	2024-10-03 14:28:02	2024-10-03 14:31:48

$ lagoon get deployment -p example-project -e test --name lagoon-build-q9h7a6 --wide
ID     	NAME               	STATUS	BUILDSTEP              	STARTED            	COMPLETED          	CREATED            	REMOTEID
233    	lagoon-build-q9h7a6	failed	runningPostRolloutTasks	2024-10-03 14:28:02	2024-10-03 14:31:48	2024-10-03 14:28:01	f2562e43-026b-493e-889b-7e1ed2cada61

Closing issues

closes uselagoon/lagoon#3819

@shreddedbacon shreddedbacon marked this pull request as ready for review October 10, 2024 05:43
@shreddedbacon shreddedbacon merged commit 2985e4a into main Oct 22, 2024
4 checks passed
@shreddedbacon shreddedbacon deleted the build-step branch October 22, 2024 04:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add "Completed with Warnings" to CLI and Notification output
1 participant