Skip to content

Commit

Permalink
add pre-puller for pipeline images
Browse files Browse the repository at this point in the history
  • Loading branch information
guimou committed Jan 29, 2024
1 parent 177e176 commit b9c57b9
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/.wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ amazonaws
Anbalagan
ansible
Ansible
antora
apiVersion
applicationset
ApplicationSet
Expand Down Expand Up @@ -241,6 +242,7 @@ Webpack
www
yaml
YAML
yml
yolo
YOLO
yolov
Expand Down
59 changes: 59 additions & 0 deletions bootstrap/ic-rhoai-configuration/images-puller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,62 @@ spec:
requests:
cpu: 10m
memory: 10Mi
---
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: image-puller-pipelines
namespace: rhods-notebooks
labels:
k8s-app: image-puller
spec:
selector:
matchLabels:
name: image-puller
template:
metadata:
labels:
name: image-puller
spec:
containers:
- name: mariadb
image: registry.redhat.io/rhel8/mariadb-103@sha256:2370ca7fd91c0d35910006c8ba40bb9651244b2a42050cb9b2dd9d5163155e15
command: ["tail"]
args: ["-f", "/dev/null"]
resources:
limits:
memory: 20Mi
requests:
cpu: 10m
memory: 10Mi
- name: ds-pipeline-scheduledworkflow-pipelines-definition
image: registry.redhat.io/rhods/odh-ml-pipelines-scheduledworkflow-rhel8@sha256:17cb168262d64409c613d09815a122958e69c29c1b78218f5f8a47af0a76b3f7
command: ["tail"]
args: ["-f", "/dev/null"]
resources:
limits:
memory: 20Mi
requests:
cpu: 10m
memory: 10Mi
- name: ds-pipeline-pipelines-definition
image: registry.redhat.io/rhods/odh-ml-pipelines-api-server-rhel8@sha256:e1a5ceff2354b5ea787838143338848727a0dba4240fe8ed84350128603399e9
command: ["tail"]
args: ["-f", "/dev/null"]
resources:
limits:
memory: 20Mi
requests:
cpu: 10m
memory: 10Mi
- name: ds-pipeline-persistenceagent-pipelines-definition
image: registry.redhat.io/rhods/odh-ml-pipelines-persistenceagent-rhel8@sha256:e87c4aab19435d4d3ded11acf53506a586127a4ec670db65bd25c72ed66c3537
command: ["tail"]
args: ["-f", "/dev/null"]
resources:
limits:
memory: 20Mi
requests:
cpu: 10m
memory: 10Mi

0 comments on commit b9c57b9

Please sign in to comment.