Skip to content

Commit 8e0d33f

Browse files
authored
NO-JIRA: sudo apt-get install -y --allow-downgrades "cri-o=${CRIO_VERSION}.*" (opendatahub-io#2258)
``` + sudo apt-get install -y 'cri-o=1.32.*' 'kubelet=1.33.*' 'kubeadm=1.33.*' 'kubectl=1.33.*' conntrack Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: cri-tools kubernetes-cni The following NEW packages will be installed: conntrack cri-o cri-tools kubeadm kubelet kubernetes-cni The following packages will be DOWNGRADED: kubectl E: Packages were downgraded and -y was used without --allow-downgrades. 0 upgraded, 6 newly installed, 1 downgraded, 0 to remove and 7 not upgraded. Error: Process completed with exit code 100. ```
1 parent 2bb7eba commit 8e0d33f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,9 +409,15 @@ jobs:
409409
sudo tee /etc/apt/sources.list.d/cri-o.list
410410
411411
sudo apt-get update
412+
412413
# [ERROR FileExisting-conntrack]: conntrack not found in system path
413414
# see man apt-patterns for the ~name=version* syntax
414-
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 \
415421
"cri-o=${CRIO_VERSION}.*" \
416422
"kubelet=${KUBERNETES_VERSION}.*" "kubeadm=${KUBERNETES_VERSION}.*" "kubectl=${KUBERNETES_VERSION}.*" \
417423
conntrack

0 commit comments

Comments
 (0)