Skip to content

Commit

Permalink
meshnet - update node selector
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
DamianZaremba committed Jan 5, 2025
1 parent 7c6ae73 commit f6e047c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifests/meshnet/grpc/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ spec:
hostNetwork: true
hostPID: true
nodeSelector:
beta.kubernetes.io/arch: amd64
kubernetes.io/arch: amd64
serviceAccountName: meshnet
terminationGracePeriodSeconds: 30
tolerations:
Expand Down
2 changes: 1 addition & 1 deletion manifests/meshnet/vxlan/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ spec:
hostNetwork: true
hostPID: true
nodeSelector:
beta.kubernetes.io/arch: amd64
kubernetes.io/arch: amd64
serviceAccountName: meshnet
terminationGracePeriodSeconds: 30
tolerations:
Expand Down

0 comments on commit f6e047c

Please sign in to comment.