1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

feat(kube/app): show image pull policy (#4785)

* feat(kube/app): show image pull policy

* fix(kube/app): remove image pull policy

* feat(kube/apps): show container image pull policy
This commit is contained in:
Chaim Lev-Ari 2021-02-12 02:59:20 +02:00 committed by GitHub
parent fc0de913c3
commit 0cfa912d77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 1 deletions

View file

@ -70,6 +70,7 @@ function computeContainers(data) {
res.PodName = data.metadata.name;
res.Name = item.name;
res.Image = item.image;
res.ImagePullPolicy = item.imagePullPolicy;
res.Node = data.spec.nodeName;
res.CreationDate = data.status.startTime;
res.Status = computeContainerStatus(data.status.containerStatuses, item.name);

View file

@ -47,6 +47,7 @@ const _KubernetesPodContainer = Object.freeze({
PodName: '',
Name: '',
Image: '',
ImagePullPolicy: '',
Node: '',
CreationDate: '',
Status: '',