Skip to content

Commit 169c3d8

Browse files
committed
fix: post-merge cleanup from upstream sync
- Restore kata-deploy subchart pin to 3.28.0 (upstream reverted to 0.0.0-dev dev placeholder, which doesn't resolve from OCI registry). - Drop redundant resolv.conf symlink in mkosi.finalize.chroot; upstream now handles it in mkosi.postinst. - Remove orphan 'golang.org/x/oauth2/google' import after upstream migrated to cloud.google.com/go/auth/credentials. - go mod tidy.
1 parent 73a6d12 commit 169c3d8

5 files changed

Lines changed: 14 additions & 10 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
dependencies:
2+
- name: kata-deploy
3+
repository: oci://ghcr.io/kata-containers/kata-deploy-charts
4+
version: 3.28.0
5+
- name: peerpodctrl
6+
repository: file://../../../../peerpod-ctrl/chart
7+
version: 0.1.0
8+
- name: peerpods-webhook
9+
repository: file://../../../../webhook/chart
10+
version: 0.1.0
11+
digest: sha256:eb2cd7fd9b9393724b926bdd28b552324880f499e0d51a0ed16ad554c5fd28bf
12+
generated: "2026-04-16T17:42:32.599141-04:00"

src/cloud-api-adaptor/install/charts/peerpods/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ maintainers:
2121

2222
dependencies:
2323
- name: kata-deploy
24-
version: "0.0.0-dev"
24+
version: "3.28.0"
2525
repository: "oci://ghcr.io/kata-containers/kata-deploy-charts"
2626
condition: kata-deploy.enabled
2727
- name: peerpodctrl

src/cloud-api-adaptor/podvm-mkosi/mkosi.presets/system/mkosi.finalize.chroot

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,6 @@ fi
1717

1818
# Conditional SFTP support: enable process-user-data.path only if ENABLE_SFTP is set
1919

20-
# On Ubuntu, mkosi installs systemd-resolved but doesn't create the resolv.conf
21-
# symlink (the Ubuntu installer normally does). Wire it up explicitly.
22-
source /etc/os-release
23-
if [[ "${ID}" == "ubuntu" ]]; then
24-
ln -sf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
25-
fi
26-
2720
# NVIDIA GPU support: enable services and ensure check script is executable.
2821
# Services gate themselves at runtime via ExecCondition=/usr/local/bin/check-nvidia-gpu
2922
# so they're harmless on non-GPU VMs.

src/cloud-providers/gcp/provider.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import (
2020
provider "github.com/confidential-containers/cloud-api-adaptor/src/cloud-providers"
2121
"github.com/confidential-containers/cloud-api-adaptor/src/cloud-providers/util"
2222
"github.com/confidential-containers/cloud-api-adaptor/src/cloud-providers/util/cloudinit"
23-
"golang.org/x/oauth2/google"
2423
"google.golang.org/api/googleapi"
2524
"google.golang.org/api/option"
2625
proto "google.golang.org/protobuf/proto"

src/cloud-providers/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ require (
2828
github.com/kdomanski/iso9660 v0.4.0
2929
github.com/stretchr/testify v1.11.1
3030
golang.org/x/crypto v0.49.0
31-
golang.org/x/oauth2 v0.36.0
3231
google.golang.org/api v0.273.1
3332
google.golang.org/protobuf v1.36.11
3433
gopkg.in/yaml.v2 v2.4.0
@@ -63,6 +62,7 @@ require (
6362
github.com/x448/float16 v0.8.4 // indirect
6463
go.yaml.in/yaml/v2 v2.4.3 // indirect
6564
go.yaml.in/yaml/v3 v3.0.4 // indirect
65+
golang.org/x/oauth2 v0.36.0 // indirect
6666
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
6767
gopkg.in/ini.v1 v1.67.0 // indirect
6868
sigs.k8s.io/randfill v1.0.0 // indirect

0 commit comments

Comments
 (0)