1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-08 23:35:31 +02:00

version: display dependencies versions (#188)

Co-authored-by: LP B <xAt0mZ@users.noreply.github.com>
This commit is contained in:
Anthony Lapenna 2024-12-03 08:45:44 +13:00 committed by GitHub
parent d393529026
commit a261f60764
8 changed files with 177 additions and 52 deletions

View file

@ -22,6 +22,14 @@ export interface VersionResponse {
WebpackVersion: string;
GoVersion: string;
GitCommit: string;
};
Dependencies: {
DockerVersion: string;
HelmVersion: string;
KubectlVersion: string;
ComposeVersion: string;
};
Runtime: {
Env?: string[];
};
}