mirror of
https://github.com/skooner-k8s/skooner.git
synced 2026-02-14 17:49:55 +00:00
Fix nodeSelector error during installation
This PR fixes the following issue during installation: ``` PS /> kubectl apply -f https://raw.githubusercontent.com/skooner-k8s/skooner/master/kubernetes-skooner.yaml Warning: spec.template.spec.nodeSelector[beta.kubernetes.io/os]: deprecated since v1.14; use "kubernetes.io/os" instead deployment.apps/skooner created service/skooner created ``` I'm running Kubernetes 1.23 on Linode LKE Signed-off-by: Trevor Sullivan <trevor@trevorsullivan.net>
This commit is contained in:
@@ -26,7 +26,7 @@ spec:
|
||||
initialDelaySeconds: 30
|
||||
timeoutSeconds: 30
|
||||
nodeSelector:
|
||||
'beta.kubernetes.io/os': linux
|
||||
'kubernetes.io/os': linux
|
||||
|
||||
---
|
||||
kind: Service
|
||||
|
||||
Reference in New Issue
Block a user