From f6e047c622f387eab4dae323ac33ac4524db02e4 Mon Sep 17 00:00:00 2001 From: Damian Zaremba Date: Sun, 5 Jan 2025 09:38:44 +0000 Subject: [PATCH] meshnet - update node selector The current manifest results in a warning: ``` W0105 09:36:05.398257 83130 run.go:29] (kubectl): Warning: spec.template.spec.nodeSelector[beta.kubernetes.io/arch]: deprecated since v1.14; use "kubernetes.io/arch" instead ``` Originally (9c3f3a) the `kubernetes.io/arch` label was used, until it was swapped to `beta.kubernetes.io/arch` in 36b380. The current documentation references `1.27.3`, with the latest release being `1.32.0`. The referenced version at the time of 36b380 was `1.24.1`. --- manifests/meshnet/grpc/manifest.yaml | 2 +- manifests/meshnet/vxlan/manifest.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/meshnet/grpc/manifest.yaml b/manifests/meshnet/grpc/manifest.yaml index bcda4c21..5a32f200 100644 --- a/manifests/meshnet/grpc/manifest.yaml +++ b/manifests/meshnet/grpc/manifest.yaml @@ -316,7 +316,7 @@ spec: hostNetwork: true hostPID: true nodeSelector: - beta.kubernetes.io/arch: amd64 + kubernetes.io/arch: amd64 serviceAccountName: meshnet terminationGracePeriodSeconds: 30 tolerations: diff --git a/manifests/meshnet/vxlan/manifest.yaml b/manifests/meshnet/vxlan/manifest.yaml index e9e99e9f..3376c6a4 100644 --- a/manifests/meshnet/vxlan/manifest.yaml +++ b/manifests/meshnet/vxlan/manifest.yaml @@ -316,7 +316,7 @@ spec: hostNetwork: true hostPID: true nodeSelector: - beta.kubernetes.io/arch: amd64 + kubernetes.io/arch: amd64 serviceAccountName: meshnet terminationGracePeriodSeconds: 30 tolerations: