Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] runc: update runc from 1.1.15 to 1.2.4 #391

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

ytsssun
Copy link
Contributor

@ytsssun ytsssun commented Mar 1, 2025

Description of changes:

  • Bump runc version from 1.1.15 to 1.2.4.
  • Add new gpg key gpgkey-5F36C6C61B5460124A75F5A69E18AA267DDB8DB4.asc for gpgverify.

Testing done:
Ran k8s conformance tests on all k8s variants on both aarch64 and x86_64.

Variant
aws-k8s-1.25
aws-k8s-1.25-nvidia
aws-k8s-1.26
aws-k8s-1.26-nvidia
aws-k8s-1.27
aws-k8s-1.27-nvidia
aws-k8s-1.28
aws-k8s-1.28-nvidia
aws-k8s-1.29
aws-k8s-1.29-nvidia
aws-k8s-1.30
aws-k8s-1.30-nvidia
aws-k8s-1.31
aws-k8s-1.31-nvidia
aws-k8s-1.32
aws-k8s-1.32-nvidia

Terms of contribution:

By submitting this pull request, I agree that this contribution is dual-licensed under the terms of both the Apache License, version 2.0, and the MIT license.

Signed-off-by: Yutong Sun <yutongsu@amazon.com>
@ytsssun
Copy link
Contributor Author

ytsssun commented Mar 1, 2025

gpgkey fetched by this script

#!/bin/bash
set -euo pipefail

OUTPUTDIR="${PWD}"
WORKDIR="$(mktemp -d)"
cd "${WORKDIR}"
cleanup() {
  rm -rf "${WORKDIR}"
}
trap 'cleanup' EXIT

KEY="${1:-}"
export GNUPGHOME="${WORKDIR}"
gpg --recv-keys "${KEY}"
gpg \
  --export \
  --armor "${KEY}" \
  > "${OUTPUTDIR}/gpgkey-${KEY}.asc"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant