-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
/app/status API that returns detailed app status (#231)
* /app/status API that returns detailed app status * Support new appStatus field in mock data
- Loading branch information
Showing
10 changed files
with
340 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
version: v2 | ||
appStatus: | ||
resourceStates: | ||
- kind: deployment | ||
name: dev-app | ||
namespace: default | ||
state: ready | ||
state: ready | ||
helmChartURL: oci://custom.registry.com/my-app | ||
currentRelease: | ||
versionLabel: custom-label | ||
releaseNotes: "custom release notes" | ||
createdAt: 2023-05-23T20:58:07Z | ||
deployedAt: 2023-05-23T21:58:07Z | ||
helmReleaseName: custom-helm-release-name | ||
helmReleaseRevision: 4 | ||
helmReleaseNamespace: default | ||
deployedReleases: | ||
- versionLabel: custom-version-label-1 | ||
releaseNotes: "custom release notes 1" | ||
createdAt: 2023-05-21T20:58:07Z | ||
deployedAt: 2023-05-21T21:58:07Z | ||
helmReleaseName: custom-helm-release-name-1 | ||
helmReleaseRevision: 2 | ||
helmReleaseNamespace: default | ||
- versionLabel: custom-version-label-2 | ||
releaseNotes: "custom release notes 2" | ||
createdAt: 2023-05-22T20:58:07Z | ||
deployedAt: 2023-05-22T21:58:07Z | ||
helmReleaseName: custom-helm-release-name-2 | ||
helmReleaseRevision: 3 | ||
helmReleaseNamespace: default | ||
availableReleases: | ||
- versionLabel: custom-label-1 | ||
releaseNotes: "custom release notes 1" | ||
createdAt: 2023-05-24T20:58:07Z | ||
deployedAt: 2023-05-24T21:58:07Z | ||
- versionLabel: custom-label-2 | ||
releaseNotes: "custom release notes 2" | ||
createdAt: 2023-06-01T20:58:07Z | ||
deployedAt: 2023-06-01T21:58:07Z |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.