Skip to content

Commit

Permalink
Mark zfs-localpv and nvidia images as internal system images
Browse files Browse the repository at this point in the history
  • Loading branch information
sonicaj committed Apr 1, 2021
1 parent 31dfaf8 commit 6aef14c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/middlewared/middlewared/plugins/docker_linux/images.py
Expand Up @@ -167,7 +167,15 @@ def get_system_images_tags(self):
with open(DEFAULT_DOCKER_IMAGES_LIST_PATH, 'r') as f:
images = [i for i in map(str.strip, f.readlines()) if i]

images.append('quay.io/openebs/zfs-driver:ci')
images.extend([
'nvidia/k8s-device-plugin:1.0.0-beta6',
'k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.1.0',
'k8s.gcr.io/sig-storage/csi-provisioner:v2.1.0',
'k8s.gcr.io/sig-storage/csi-resizer:v1.1.0',
'k8s.gcr.io/sig-storage/snapshot-controller:v4.0.0',
'k8s.gcr.io/sig-storage/csi-snapshotter:v4.0.0',
'openebs/zfs-driver:1.4.0',
])
return list(itertools.chain(
*[self.normalise_tag(tag) for tag in images]
))

0 comments on commit 6aef14c

Please sign in to comment.