Skip to content

Commit ccd100b

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents 38b96e4 + 8e0d33f commit ccd100b

File tree

29 files changed

+583
-126
lines changed

29 files changed

+583
-126
lines changed

.github/release.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Configuration for GitHub's automatically generated release notes
2+
# Docs: https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
3+
---
4+
changelog:
5+
# RHAIENG-581: bots and automation accounts (suppress noisy PRs)
6+
exclude:
7+
# TESTING: use https://github.com/opendatahub-io/notebooks/releases/new with custom branch to test this out
8+
# selecting the + Create new tag in dropdown actually does not create new tag unless form is submitted
9+
# then click Generate release notes to see how it comes out
10+
labels:
11+
# https://github.com/opendatahub-io/notebooks/pull/1961
12+
- konflux-nudge
13+
authors:
14+
# chore(deps): update odh-workbench-jupyter-minimal-rocm-py312-ubi9 to 636a39a by @red-hat-konflux[bot] in #1961
15+
- app/red-hat-konflux
16+
# chore(deps): update konflux references by @red-hat-konflux[bot] in #1974
17+
- red-hat-konflux[bot]
18+
19+
# the following are candidates for exclusion, need to determine if app/ or [bot] should be used
20+
21+
# [main] RHOAIENG-19036: chore(gha): fix workflow_dispatch invocation by @openshift-cherrypick-robot in #896
22+
# openshift-cherrypick-robot
23+
24+
# RHOAIENG-28188: add `.tekton/` files for version 2025a-v1.34 by @odh-devops-app[bot] in #1365
25+
# odh-devops-app[bot]
26+
27+
# [Digest Updater Action] Update Runtimes Images by @github-actions[bot] in #550
28+
# github-actions[bot]
29+
30+
# RHAIENG-540: build(deps): bump `tornado` dependency from `~6.5.1` to `~6.5.2` across all relevant Pipfiles by @dependabot[bot] in #1754
31+
# dependabot[bot]
32+
33+
# CodeRabbit Chat: Update .coderabbit.yaml to filter for main and 2024b branches only by @coderabbitai[bot] in #1491
34+
# coderabbitai[bot]
35+
36+
# [Codeflare Action] Update notebook's pipfile to sync with Codeflare-SDK release 0.16.2 by @codeflare-machine-account in #542
37+
# codeflare-machine-account

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,7 @@ jobs:
386386
387387
# https://cri-o.io/
388388
- name: Install cri-o
389+
id: install-crio
389390
if: ${{ steps.have-tests.outputs.tests == 'true' }}
390391
run: |
391392
set -Eeuxo pipefail
@@ -408,9 +409,15 @@ jobs:
408409
sudo tee /etc/apt/sources.list.d/cri-o.list
409410
410411
sudo apt-get update
412+
411413
# [ERROR FileExisting-conntrack]: conntrack not found in system path
412414
# see man apt-patterns for the ~name=version* syntax
413-
sudo apt-get install -y \
415+
416+
# The following packages will be DOWNGRADED:
417+
# kubectl
418+
# E: Packages were downgraded and -y was used without --allow-downgrades.
419+
420+
sudo apt-get install -y --allow-downgrades \
414421
"cri-o=${CRIO_VERSION}.*" \
415422
"kubelet=${KUBERNETES_VERSION}.*" "kubeadm=${KUBERNETES_VERSION}.*" "kubectl=${KUBERNETES_VERSION}.*" \
416423
conntrack
@@ -478,7 +485,7 @@ jobs:
478485
sudo chown $(id -u):$(id -g) $HOME/.kube/config
479486
480487
- name: Show kubelet debug data (on failure)
481-
if: ${{ failure() && steps.have-tests.outputs.tests == 'true' }}
488+
if: ${{ failure() && steps.have-tests.outputs.tests == 'true' && steps.install-crio.outcome == 'success' }}
482489
run: |
483490
set -Eeuxo pipefail
484491

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ jobs:
2020
gen:
2121
name: Generate job matrix
2222
runs-on: ubuntu-latest
23+
# for odh-io/notebooks and rhds/notebooks, allow only main, rhoai-*, release-*
24+
if: ${{ (github.repository != 'opendatahub-io/notebooks' && github.repository != 'red-hat-data-services/notebooks')
25+
|| github.ref_name == 'main' || github.ref_name == '2024b' || github.ref_name == '2024a'
26+
|| startsWith(github.ref_name, 'rhoai-') || startsWith(github.ref_name, 'release-') }}
2327
outputs:
2428
matrix: ${{ steps.gen.outputs.matrix }}
2529
has_jobs: ${{ steps.gen.outputs.has_jobs }}

.tekton/odh-base-image-cuda-py311-c9s-pull-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ spec:
4343
pipelineRef:
4444
name: multiarch-pull-request-pipeline
4545
taskRunTemplate:
46-
serviceAccountName: build-pipeline-odh-base-image-cuda-py311-c9s
46+
serviceAccountName: build-pipeline-odh-base-image-cuda-py311-c9s-poc
4747
workspaces:
4848
- name: git-auth
4949
secret:

.tekton/odh-base-image-cuda-py311-c9s-push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
pipelineRef:
3535
name: singlearch-push-pipeline
3636
taskRunTemplate:
37-
serviceAccountName: build-pipeline-odh-base-image-cuda-py311-c9s
37+
serviceAccountName: build-pipeline-odh-base-image-cuda-py311-c9s-poc
3838
workspaces:
3939
- name: git-auth
4040
secret:

.tekton/odh-base-image-cuda-py312-c9s-pull-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ spec:
4343
pipelineRef:
4444
name: multiarch-pull-request-pipeline
4545
taskRunTemplate:
46-
serviceAccountName: build-pipeline-odh-base-image-cuda-py312-c9s
46+
serviceAccountName: build-pipeline-odh-base-image-cuda-py312-c9s-poc
4747
workspaces:
4848
- name: git-auth
4949
secret:

.tekton/odh-base-image-cuda-py312-c9s-push.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
apiVersion: tekton.dev/v1
22
kind: PipelineRun
33
metadata:
4+
#TEST
45
annotations:
56
build.appstudio.openshift.io/repo: https://github.com/opendatahub-io/notebooks?rev={{revision}}
67
build.appstudio.redhat.com/commit_sha: '{{revision}}'
@@ -34,7 +35,7 @@ spec:
3435
pipelineRef:
3536
name: singlearch-push-pipeline
3637
taskRunTemplate:
37-
serviceAccountName: build-pipeline-odh-base-image-cuda-py312-c9s
38+
serviceAccountName: build-pipeline-odh-base-image-cuda-py312-c9s-poc
3839
workspaces:
3940
- name: git-auth
4041
secret:

.tekton/odh-base-image-cuda-py312-ubi9-pull-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ spec:
4343
pipelineRef:
4444
name: multiarch-pull-request-pipeline
4545
taskRunTemplate:
46-
serviceAccountName: build-pipeline-odh-base-image-cuda-py312-ubi9
46+
serviceAccountName: build-pipeline-odh-base-image-cuda-py312-ubi9-poc
4747
workspaces:
4848
- name: git-auth
4949
secret:

.tekton/odh-base-image-cuda-py312-ubi9-push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ spec:
3535
pipelineRef:
3636
name: singlearch-push-pipeline
3737
taskRunTemplate:
38-
serviceAccountName: build-pipeline-odh-base-image-cuda-py312-ubi9
38+
serviceAccountName: build-pipeline-odh-base-image-cuda-py312-ubi9-poc
3939
workspaces:
4040
- name: git-auth
4141
secret:

.tekton/odh-base-image-rocm-py312-c9s-pull-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ spec:
4343
pipelineRef:
4444
name: multiarch-pull-request-pipeline
4545
taskRunTemplate:
46-
serviceAccountName: build-pipeline-odh-base-image-rocm-py312-c9s
46+
serviceAccountName: build-pipeline-odh-base-image-rocm-py312-c9s-poc
4747
workspaces:
4848
- name: git-auth
4949
secret:

0 commit comments

Comments
 (0)