Skip to content

Commit 6496953

Browse files
committed
Added buildah to the prefetch machinery
1 parent 437b02c commit 6496953

File tree

7 files changed

+311
-102
lines changed

7 files changed

+311
-102
lines changed

.tekton/lightspeed-rag-tool-pull-request.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
pipelinesascode.tekton.dev/cancel-in-progress: "true"
1010
pipelinesascode.tekton.dev/max-keep-runs: "3"
1111
pipelinesascode.tekton.dev/on-cel-expression: |
12-
event == "pull_request" &&
12+
event == "pull_request" &&
1313
target_branch == "main" &&
1414
(".tekton/lightspeed-rag-tool-pull-request.yaml".pathChanged() || "artifacts.lock.yaml".pathChanged() || "rpms.lock.yaml".pathChanged() || "requirements*".pathChanged() || "byok/***".pathChanged() || "embeddings_model/***".pathChanged())
1515
creationTimestamp: null
@@ -33,6 +33,11 @@ spec:
3333
value: byok/Containerfile.tool
3434
- name: hermetic
3535
value: "true"
36+
- name: build-args
37+
value:
38+
- HERMETIC=true
39+
- name: build-source-image
40+
value: "true"
3641
- name: prefetch-input
3742
value: '[{"type": "generic", "path": "."}, {"type": "rpm", "path": "."}, {"type":
3843
"pip", "path": ".", "allow_binary": "true", "requirements_files": ["requirements.gpu.txt"]}]'

.tekton/lightspeed-rag-tool-push.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ spec:
3030
value: byok/Containerfile.tool
3131
- name: hermetic
3232
value: "true"
33+
- name: build-args
34+
value:
35+
- HERMETIC=true
36+
- name: build-source-image
37+
value: "true"
3338
- name: prefetch-input
3439
value: '[{"type": "generic", "path": "."}, {"type": "rpm", "path": "."}, {"type":
3540
"pip", "path": ".", "allow_binary": "true", "requirements_files": ["requirements.gpu.txt"]}]'

byok/Containerfile.output

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BYOK_TOOL_IMAGE=quay.io/$USERNAME/tool:latest
1+
ARG BYOK_TOOL_IMAGE=registry.redhat.io/lightspeed-rag-tool-tech-preview/lightspeed-rag-tool-rhel9:latest
22
ARG UBI_BASE_IMAGE=registry.access.redhat.com/ubi9/ubi:latest
33
FROM ${BYOK_TOOL_IMAGE} as tool
44
ARG UBI_BASE_IMAGE

byok/Containerfile.tool

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BYOK_TOOL_IMAGE=quay.io/$USERNAME/tool:latest
1+
ARG BYOK_TOOL_IMAGE=registry.redhat.io/lightspeed-rag-tool-tech-preview/lightspeed-rag-tool-rhel9:latest
22
ARG UBI_BASE_IMAGE=registry.access.redhat.com/ubi9/ubi:latest
33
ARG HERMETIC=false
44
FROM ${UBI_BASE_IMAGE}
@@ -17,13 +17,37 @@ COPY requirements.gpu.txt .
1717
RUN pip3.11 install --no-cache-dir --no-deps -r requirements.gpu.txt
1818

1919
COPY embeddings_model ./embeddings_model
20-
RUN cd embeddings_model; if [ "$HERMETIC" == "true" ] && [ ! -f embeddings_model/model.safetensors ]; then \
21-
cp /cachi2/output/deps/generic/model.safetensors model.safetensors; \
22-
elif [ ! -f embeddings_model/model.safetensors ]; then \
23-
curl -L -O https://huggingface.co/sentence-transformers/all-mpnet-base-v2/resolve/9a3225965996d404b775526de6dbfe85d3368642/model.safetensors; \
20+
ENV HERMETIC=$HERMETIC
21+
RUN cd embeddings_model; \
22+
if [ ! -f embeddings_model/model.safetensors ]; then \
23+
if [ "$HERMETIC" == "true" ]; then \
24+
cp /cachi2/output/deps/generic/model.safetensors model.safetensors; \
25+
else \
26+
curl -L -O https://huggingface.co/sentence-transformers/all-mpnet-base-v2/resolve/9a3225965996d404b775526de6dbfe85d3368642/model.safetensors; \
27+
fi \
2428
fi
2529
COPY byok/generate_embeddings_tool.py byok/Containerfile.output ./
2630

31+
# this directory is checked by ecosystem-cert-preflight-checks task in Konflux
32+
RUN mkdir /licenses
33+
COPY LICENSE /licenses/
34+
35+
# Labels for enterprise contract
36+
LABEL com.redhat.component=openshift-lightspeed-rag-content
37+
LABEL description="Red Hat OpenShift Lightspeed BYO Knowledge Tools"
38+
LABEL distribution-scope=private
39+
LABEL io.k8s.description="Red Hat OpenShift Lightspeed BYO Knowledge Tools"
40+
LABEL io.k8s.display-name="Openshift Lightspeed BYO Knowledge Tools"
41+
LABEL io.openshift.tags="openshift,lightspeed,ai,assistant,rag"
42+
LABEL name=openshift-lightspeed-rag-content
43+
LABEL release=0.0.1
44+
LABEL url="https://github.com/openshift/lightspeed-rag-content"
45+
LABEL vendor="Red Hat, Inc."
46+
LABEL version=0.0.1
47+
LABEL summary="Red Hat OpenShift Lightspeed BYO Knowledge Tools"
48+
49+
USER 65532:65532
50+
2751
ENV _BUILDAH_STARTED_IN_USERNS=""
2852
ENV BUILDAH_ISOLATION=chroot
2953
ENV OUT_IMAGE_TAG=$OUT_IMAGE_TAG

rpms.in.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
packages: [python3.11, python3.11-pip, libcudnn9, libnccl, libcusparselt0]
1+
packages: [buildah, python3.11, python3.11-pip, libcudnn9, libnccl, libcusparselt0]
22
contentOrigin:
33
repofiles: ["./ubi.repo", "./cuda.repo"]
4+
arches: [x86_64]

rpms.lock.yaml

Lines changed: 206 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,83 +4,272 @@ lockfileVendor: redhat
44
arches:
55
- arch: x86_64
66
packages:
7+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/a/aardvark-dns-1.14.0-1.el9.x86_64.rpm
8+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
9+
size: 902510
10+
checksum: sha256:fa8aebd7bc20786b7b358bdefdf6f53e489a5491e07bf9a2e2157188bafc97e0
11+
name: aardvark-dns
12+
evr: 2:1.14.0-1.el9
13+
sourcerpm: aardvark-dns-1.14.0-1.el9.src.rpm
14+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/b/buildah-1.39.4-1.el9_6.x86_64.rpm
15+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
16+
size: 11582763
17+
checksum: sha256:b346088e5654d2815971b7a4e4aa3d85fe827a6e2e6699bf4c86f7e7215beb81
18+
name: buildah
19+
evr: 2:1.39.4-1.el9_6
20+
sourcerpm: buildah-1.39.4-1.el9_6.src.rpm
21+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/containers-common-1-117.el9_6.x86_64.rpm
22+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
23+
size: 158417
24+
checksum: sha256:4a45b00847d30c3c804a6184af69e0e11836be975e51960596ce31c459a5d532
25+
name: containers-common
26+
evr: 2:1-117.el9_6
27+
sourcerpm: containers-common-1-117.el9_6.src.rpm
28+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/containers-common-extra-1-117.el9_6.x86_64.rpm
29+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
30+
size: 10381
31+
checksum: sha256:3c8a936db74fc619ff09e033f4c774f75cdb64e1b11eb68c4e39e39d1ab11cde
32+
name: containers-common-extra
33+
evr: 2:1-117.el9_6
34+
sourcerpm: containers-common-1-117.el9_6.src.rpm
35+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/criu-3.19-1.el9.x86_64.rpm
36+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
37+
size: 576009
38+
checksum: sha256:823ac6aab1745521039d5aa4db2e843cb632854449d5b06420eb52825a985b59
39+
name: criu
40+
evr: 3.19-1.el9
41+
sourcerpm: criu-3.19-1.el9.src.rpm
42+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/criu-libs-3.19-1.el9.x86_64.rpm
43+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
44+
size: 33643
45+
checksum: sha256:bb821ddf9bd0321e0750d2fc5cadd5f531e67cafacf6d92512e714b31133a64d
46+
name: criu-libs
47+
evr: 3.19-1.el9
48+
sourcerpm: criu-3.19-1.el9.src.rpm
49+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/crun-1.21-1.el9_6.x86_64.rpm
50+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
51+
size: 239763
52+
checksum: sha256:08c8037c221ccc2f940b0a6c549a1ec1497198f8876214048aacacb272d25392
53+
name: crun
54+
evr: 1.21-1.el9_6
55+
sourcerpm: crun-1.21-1.el9_6.src.rpm
56+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/f/fuse-overlayfs-1.14-1.el9.x86_64.rpm
57+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
58+
size: 71022
59+
checksum: sha256:884e4034c930e0305d2402da2bdc1eac5a91295da06e554b75c1c9a4529ddbc2
60+
name: fuse-overlayfs
61+
evr: 1.14-1.el9
62+
sourcerpm: fuse-overlayfs-1.14-1.el9.src.rpm
63+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/f/fuse3-3.10.2-9.el9.x86_64.rpm
64+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
65+
size: 58706
66+
checksum: sha256:4674b4ee6150c8f8be01a028a471c209a6be7c0cf78e9450cf28fb01eaed9ea2
67+
name: fuse3
68+
evr: 3.10.2-9.el9
69+
sourcerpm: fuse3-3.10.2-9.el9.src.rpm
70+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/f/fuse3-libs-3.10.2-9.el9.x86_64.rpm
71+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
72+
size: 95573
73+
checksum: sha256:945e1d95edbce9c7dba52e9317d4564381efa5a1ba48d4bd49a58c85e47cd717
74+
name: fuse3-libs
75+
evr: 3.10.2-9.el9
76+
sourcerpm: fuse3-3.10.2-9.el9.src.rpm
77+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libnet-1.2-7.el9.x86_64.rpm
78+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
79+
size: 61278
80+
checksum: sha256:738b9a7ab78c149487e349d90c384b59031d5763ba687a6b58a4f853671af86b
81+
name: libnet
82+
evr: 1.2-7.el9
83+
sourcerpm: libnet-1.2-7.el9.src.rpm
784
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libnsl2-2.0.0-1.el9.x86_64.rpm
8-
repoid: ubi-9-appstream-rpms
85+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
986
size: 33287
1087
checksum: sha256:052f7a182180528ba6e3c4378e5dcfb84640594a3e2e7bbe4f0167381e824ce0
1188
name: libnsl2
1289
evr: 2.0.0-1.el9
1390
sourcerpm: libnsl2-2.0.0-1.el9.src.rpm
91+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libslirp-4.4.0-8.el9.x86_64.rpm
92+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
93+
size: 71992
94+
checksum: sha256:9bd269ec50504f997683e963481f870bb937c3cfdb54a057e9acca67bf2b7631
95+
name: libslirp
96+
evr: 4.4.0-8.el9
97+
sourcerpm: libslirp-4.4.0-8.el9.src.rpm
1498
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libxcrypt-compat-4.4.18-3.el9.x86_64.rpm
15-
repoid: ubi-9-appstream-rpms
99+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
16100
size: 93189
17101
checksum: sha256:2bd6c288e1970a001d3a1ae69166c0d926d9c87ce892edcb2110f4e142c12a7a
18102
name: libxcrypt-compat
19103
evr: 4.4.18-3.el9
20104
sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm
21105
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/m/mpdecimal-2.5.1-3.el9.x86_64.rpm
22-
repoid: ubi-9-appstream-rpms
106+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
23107
size: 89670
24108
checksum: sha256:89a8c9951ac56bed2caa1adbcba349c021af1134b6e2df3fc0a8a60577a4f54d
25109
name: mpdecimal
26110
evr: 2.5.1-3.el9
27111
sourcerpm: mpdecimal-2.5.1-3.el9.src.rpm
112+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/n/netavark-1.14.1-1.el9_6.x86_64.rpm
113+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
114+
size: 3846970
115+
checksum: sha256:7409a5c09ec16c63c6ab1199f8bf3bb0bff7cae23aec14ae96885f73fda77b6e
116+
name: netavark
117+
evr: 2:1.14.1-1.el9_6
118+
sourcerpm: netavark-1.14.1-1.el9_6.src.rpm
119+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/passt-0^20250217.ga1e48a0-1.el9.x86_64.rpm
120+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
121+
size: 268693
122+
checksum: sha256:2df37eba29cdaf658ff540bac81ee3c7680151e60e8fb2dc2a4c91fc52263bcd
123+
name: passt
124+
evr: 0^20250217.ga1e48a0-1.el9
125+
sourcerpm: passt-0^20250217.ga1e48a0-1.el9.src.rpm
28126
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3.11-3.11.11-2.el9.x86_64.rpm
29-
repoid: ubi-9-appstream-rpms
127+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
30128
size: 28175
31129
checksum: sha256:10314a36977558472732adcb2bda7c0b2588022d4a9fd1c7775ae66426428197
32130
name: python3.11
33131
evr: 3.11.11-2.el9
34132
sourcerpm: python3.11-3.11.11-2.el9.src.rpm
35133
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3.11-libs-3.11.11-2.el9.x86_64.rpm
36-
repoid: ubi-9-appstream-rpms
134+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
37135
size: 10701215
38136
checksum: sha256:ac5126f5ed46e295ebc4cb042f1bbe8b24669811aa47df36f83d29fd9e8b3f09
39137
name: python3.11-libs
40138
evr: 3.11.11-2.el9
41139
sourcerpm: python3.11-3.11.11-2.el9.src.rpm
42140
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3.11-pip-22.3.1-5.el9.noarch.rpm
43-
repoid: ubi-9-appstream-rpms
141+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
44142
size: 3358530
45143
checksum: sha256:c5c12f2941e65ea36b645ea215a62883fcfafc45931f0370153fecf752bde885
46144
name: python3.11-pip
47145
evr: 22.3.1-5.el9
48146
sourcerpm: python3.11-pip-22.3.1-5.el9.src.rpm
49147
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3.11-pip-wheel-22.3.1-5.el9.noarch.rpm
50-
repoid: ubi-9-appstream-rpms
148+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
51149
size: 1490893
52150
checksum: sha256:c7c531cbc553b7cbec0a3a61ed396aede78ec663ff77a118a60829b9505383ab
53151
name: python3.11-pip-wheel
54152
evr: 22.3.1-5.el9
55153
sourcerpm: python3.11-pip-22.3.1-5.el9.src.rpm
56154
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3.11-setuptools-65.5.1-3.el9.noarch.rpm
57-
repoid: ubi-9-appstream-rpms
155+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
58156
size: 1800394
59157
checksum: sha256:beae6c2ed08b28236462f282ad5a6b79bb320bc30be551621beb81df5ed10a08
60158
name: python3.11-setuptools
61159
evr: 65.5.1-3.el9
62160
sourcerpm: python3.11-setuptools-65.5.1-3.el9.src.rpm
63161
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3.11-setuptools-wheel-65.5.1-3.el9.noarch.rpm
64-
repoid: ubi-9-appstream-rpms
162+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
65163
size: 732455
66164
checksum: sha256:1c62d47b95503b00ba45db358d2611d94575a579e47fcaa0ce134ae21b4509de
67165
name: python3.11-setuptools-wheel
68166
evr: 65.5.1-3.el9
69167
sourcerpm: python3.11-setuptools-65.5.1-3.el9.src.rpm
70-
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/expat-2.5.0-5.el9_6.x86_64.rpm
71-
repoid: ubi-9-baseos-rpms
72-
size: 121835
73-
checksum: sha256:63522da84934e944305c9e206894031988ab9e561bba2e6c131d76093d1a0211
74-
name: expat
75-
evr: 2.5.0-5.el9_6
76-
sourcerpm: expat-2.5.0-5.el9_6.src.rpm
168+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/s/slirp4netns-1.3.2-1.el9.x86_64.rpm
169+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
170+
size: 50387
171+
checksum: sha256:25a2a6c5cee50c6f4693ee66c782e9644f4ba1fe410c795391afcc07546496e7
172+
name: slirp4netns
173+
evr: 1.3.2-1.el9
174+
sourcerpm: slirp4netns-1.3.2-1.el9.src.rpm
175+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/y/yajl-2.1.0-25.el9.x86_64.rpm
176+
repoid: ubi-9-for-x86_64-for-x86_64-appstream-rpms
177+
size: 42487
178+
checksum: sha256:f7503f34d5095303db5c57c70c5edb890dab7d0bba5920f3dcc44d7835449555
179+
name: yajl
180+
evr: 2.1.0-25.el9
181+
sourcerpm: yajl-2.1.0-25.el9.src.rpm
182+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/fuse-common-3.10.2-9.el9.x86_64.rpm
183+
repoid: ubi-9-for-x86_64-for-x86_64-baseos-rpms
184+
size: 8750
185+
checksum: sha256:548265cbee787fa659bc79c07e15a12007f39eb70e905bf660ec488f0bb8820f
186+
name: fuse-common
187+
evr: 3.10.2-9.el9
188+
sourcerpm: fuse3-3.10.2-9.el9.src.rpm
189+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/iptables-libs-1.8.10-11.el9_5.x86_64.rpm
190+
repoid: ubi-9-for-x86_64-for-x86_64-baseos-rpms
191+
size: 476678
192+
checksum: sha256:3e79ca4cc3d35c1f1e0ac6c9f05c5be56b7ab6dd1f8ae719a21ec1b9e3bfa018
193+
name: iptables-libs
194+
evr: 1.8.10-11.el9_5
195+
sourcerpm: iptables-1.8.10-11.el9_5.src.rpm
196+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/iptables-nft-1.8.10-11.el9_5.x86_64.rpm
197+
repoid: ubi-9-for-x86_64-for-x86_64-baseos-rpms
198+
size: 214056
199+
checksum: sha256:54e031813637738af285ff4b1c2e4a20b913f2ea643a29940a07ccaf8bd197f5
200+
name: iptables-nft
201+
evr: 1.8.10-11.el9_5
202+
sourcerpm: iptables-1.8.10-11.el9_5.src.rpm
203+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/jansson-2.14-1.el9.x86_64.rpm
204+
repoid: ubi-9-for-x86_64-for-x86_64-baseos-rpms
205+
size: 49137
206+
checksum: sha256:4e9aec51ee46d7265d6edd1245b5d5ab5e8336dc2a4ca17f2cace2ce8bae3761
207+
name: jansson
208+
evr: 2.14-1.el9
209+
sourcerpm: jansson-2.14-1.el9.src.rpm
210+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kmod-28-10.el9.x86_64.rpm
211+
repoid: ubi-9-for-x86_64-for-x86_64-baseos-rpms
212+
size: 132888
213+
checksum: sha256:e9ccad17d4c6c30524ec5c2aab8d8d351f2776ab564baccdbd2df9b54e28baea
214+
name: kmod
215+
evr: 28-10.el9
216+
sourcerpm: kmod-28-10.el9.src.rpm
217+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnetfilter_conntrack-1.0.9-1.el9.x86_64.rpm
218+
repoid: ubi-9-for-x86_64-for-x86_64-baseos-rpms
219+
size: 62066
220+
checksum: sha256:beeb73e78390077c6afd9ed6177bad8bad278dbfaae9d90edf7243cdf6a44a3f
221+
name: libnetfilter_conntrack
222+
evr: 1.0.9-1.el9
223+
sourcerpm: libnetfilter_conntrack-1.0.9-1.el9.src.rpm
224+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnfnetlink-1.0.1-23.el9_5.x86_64.rpm
225+
repoid: ubi-9-for-x86_64-for-x86_64-baseos-rpms
226+
size: 32236
227+
checksum: sha256:177882bfe48c9c9effc7b1bce6b58b2466988c53e400c07fb1ba2d3a4ebe6f40
228+
name: libnfnetlink
229+
evr: 1.0.1-23.el9_5
230+
sourcerpm: libnfnetlink-1.0.1-23.el9_5.src.rpm
231+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnftnl-1.2.6-4.el9_4.x86_64.rpm
232+
repoid: ubi-9-for-x86_64-for-x86_64-baseos-rpms
233+
size: 91380
234+
checksum: sha256:e64d7b270be4be36af80ed220852cb760a1069e34667b1ba9eec7a02762a14bf
235+
name: libnftnl
236+
evr: 1.2.6-4.el9_4
237+
sourcerpm: libnftnl-1.2.6-4.el9_4.src.rpm
238+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnl3-3.11.0-1.el9.x86_64.rpm
239+
repoid: ubi-9-for-x86_64-for-x86_64-baseos-rpms
240+
size: 376137
241+
checksum: sha256:89728a253a5bf1c8e01c40573f1283d40188e003bdbd4ac565f8b0f05bced55c
242+
name: libnl3
243+
evr: 3.11.0-1.el9
244+
sourcerpm: libnl3-3.11.0-1.el9.src.rpm
77245
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libtirpc-1.3.3-9.el9.x86_64.rpm
78-
repoid: ubi-9-baseos-rpms
246+
repoid: ubi-9-for-x86_64-for-x86_64-baseos-rpms
79247
size: 98934
80248
checksum: sha256:f82cd69dc3aac881d5b574930c7d274687054cb5b03d3a8e3affa7bbcd5950b1
81249
name: libtirpc
82250
evr: 1.3.3-9.el9
83251
sourcerpm: libtirpc-1.3.3-9.el9.src.rpm
252+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/nftables-1.0.9-3.el9.x86_64.rpm
253+
repoid: ubi-9-for-x86_64-for-x86_64-baseos-rpms
254+
size: 437243
255+
checksum: sha256:1e02a3396ca514706f1a0814e3e7a03f15cff6fb7af1d5b1bf49d3d991f0d927
256+
name: nftables
257+
evr: 1:1.0.9-3.el9
258+
sourcerpm: nftables-1.0.9-3.el9.src.rpm
259+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/protobuf-c-1.3.3-13.el9.x86_64.rpm
260+
repoid: ubi-9-for-x86_64-for-x86_64-baseos-rpms
261+
size: 38224
262+
checksum: sha256:9669f5bed1c9532ede399cd1ea6f8937ae7d18cfb56d59f2939a4b456390035f
263+
name: protobuf-c
264+
evr: 1.3.3-13.el9
265+
sourcerpm: protobuf-c-1.3.3-13.el9.src.rpm
266+
- url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/shadow-utils-subid-4.9-12.el9.x86_64.rpm
267+
repoid: ubi-9-for-x86_64-for-x86_64-baseos-rpms
268+
size: 90389
269+
checksum: sha256:342ced93b6ca9b0fd884f990177f7b1e8a6bc35e0bb2a6d4b6684cf8f0062760
270+
name: shadow-utils-subid
271+
evr: 2:4.9-12.el9
272+
sourcerpm: shadow-utils-4.9-12.el9.src.rpm
84273
- url: https://developer.download.nvidia.com/compute/cuda/repos/rhel9/x86_64/libcudnn9-cuda-11-9.10.1.4-1.x86_64.rpm
85274
repoid: cuda
86275
size: 398613734
@@ -95,12 +284,5 @@ arches:
95284
name: libcusparselt0
96285
evr: 0.7.1.0-1
97286
sourcerpm: libcusparselt0-0.7.1.0-1.src.rpm
98-
- url: https://developer.download.nvidia.com/compute/cuda/repos/rhel9/x86_64/libnccl-2.26.5-1+cuda12.9.x86_64.rpm
99-
repoid: cuda
100-
size: 208529979
101-
checksum: sha256:a0cea3e5340c44b55eba14e8500ee5adbc88a997b6407117680a2b24197a58ad
102-
name: libnccl
103-
evr: 2.26.5-1+cuda12.9
104-
sourcerpm: libnccl-2.26.5-1+cuda12.9.src.rpm
105287
source: []
106288
module_metadata: []

0 commit comments

Comments
 (0)