mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 07:19:41 +02:00
feat(app): migrate app containers to react [EE-5353] (#9992)
This commit is contained in:
parent
6290e9facc
commit
23295d2736
22 changed files with 312 additions and 297 deletions
|
@ -0,0 +1,23 @@
|
|||
import { pod } from './pod';
|
||||
import { name } from './name';
|
||||
import { image } from './image';
|
||||
import { imagePullPolicy } from './imagePullPolicy';
|
||||
import { status } from './status';
|
||||
import { node } from './node';
|
||||
import { podIp } from './podIp';
|
||||
import { creationDate } from './creationDate';
|
||||
import { getActions } from './actions';
|
||||
|
||||
export function getColumns(isServerMetricsEnabled: boolean) {
|
||||
return [
|
||||
pod,
|
||||
name,
|
||||
image,
|
||||
imagePullPolicy,
|
||||
status,
|
||||
node,
|
||||
podIp,
|
||||
creationDate,
|
||||
getActions(isServerMetricsEnabled),
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue