Skip to content

Commit c59f0e9

Browse files
committed
Merge remote-tracking branch 'upstream/main' into rhoai-2.22
2 parents 5599fe5 + c37e2c5 commit c59f0e9

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

.github/workflows/build-notebooks-TEMPLATE.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,10 @@ jobs:
186186
# remote (CONTAINER_HOST) podman does not do reset (and refuses --force option)
187187
sudo /home/linuxbrew/.linuxbrew/opt/podman/bin/podman system reset --force
188188
189+
# https://github.com/containers/podman/pull/25504
190+
# podman 5.5.0: The podman system reset command no longer removes the user's podman.sock API socket
191+
sudo rm -rf /var/run/podman
192+
189193
# https://github.com/containers/podman/blob/main/docs/tutorials/socket_activation.md
190194
# since `brew services start podman` is buggy, let's do our own brew-compatible service
191195
# Regarding directory paths, see https://unix.stackexchange.com/questions/224992/where-do-i-put-my-systemd-unit-file
@@ -204,7 +208,12 @@ jobs:
204208
205209
- name: Show error logs (on failure)
206210
if: ${{ failure() }}
207-
run: journalctl -xe
211+
run: |
212+
set -Eeuxo pipefail
213+
214+
journalctl -xe
215+
ls -AlF /var/run/podman/podman.sock || echo "Socket /var/run/podman/podman.sock not found"
216+
sudo ss -xlpn | grep 'podman.sock' || echo "No active listener found for podman.sock via ss"
208217
209218
- name: Calculate image name and tag
210219
id: calculated_vars

ci/cached-builds/podman.service

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://github.com/containers/podman/blob/main/contrib/systemd/system/podman.service.in
12
# https://docs.podman.io/en/latest/markdown/podman-system-service.1.html
23
# cat /usr/lib/systemd/system/podman.socket
34

ci/cached-builds/podman.socket

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://github.com/containers/podman/blob/main/contrib/systemd/system/podman.socket
12
# cat /usr/lib/systemd/system/podman.socket
23

34
[Unit]

docs/developer-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,9 @@ This section provides an overview of the automation functionalities.
144144
145145
This GitHub action is configured to be triggered on a weekly basis, specifically every Monday at 22:00 PM UTC. Its main objective is to automatically update the Pipfile.lock files by fetching the most recent minor versions available. Additionally, it also updates the hashes for the downloaded files of Python dependencies, including any sub-dependencies. Once the updated files are pushed, the CI pipeline is triggered to generate new updated images based on these changes.
146146
147-
### **Sync the downstream release branch with the upstream** [[Link]](https://github.com/red-hat-data-services/notebooks/blob/main/.github/workflows/sync-release-branch-2023a.yml)
147+
### **Sync the downstream release branch with the upstream** [[Link]](https://github.com/red-hat-data-services/rhods-devops-infra/blob/main/.github/workflows/upstream-auto-merge.yaml)
148148
149-
This GitHub action is configured to be triggered on a weekly basis, specifically every Tuesday at 08:00 AM UTC. Its main objective is to automatically update the downstream release branch with the upstream branch.
149+
This GitHub action is configured to be triggered on a daily basis and synchronizes the selected projects from their upstream repositories to their downstream counterparts.
150150
151151
### **Digest Updater workflow on the manifests** [[Link]](https://github.com/opendatahub-io/odh-manifests/blob/master/.github/workflows/notebooks-digest-updater-upstream.yaml)
152152

manifests/base/cuda-rstudio-buildconfig.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ spec:
4242
type: Git
4343
git:
4444
uri: "https://github.com/red-hat-data-services/notebooks"
45-
ref: rhoai-2.20
45+
ref: rhoai-2.21
4646
strategy:
4747
type: Docker
4848
dockerStrategy:

manifests/base/rstudio-buildconfig.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ spec:
3939
type: Git
4040
git:
4141
uri: "https://github.com/red-hat-data-services/notebooks"
42-
ref: rhoai-2.20
42+
ref: rhoai-2.21
4343
strategy:
4444
type: Docker
4545
dockerStrategy:

0 commit comments

Comments
 (0)