-
Notifications
You must be signed in to change notification settings - Fork 16
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
support accelerated networking #84
Conversation
or perhaps @shane-snyder or @diana-sari ? |
hello @davidkarlsen thanks for the PR!
|
@diana-sari that was probably the case before this PR as well? |
see what happens if you change this default: machineTaints: {} to: machineTaints: [] |
yeah i actually am seeing similar error from main branch, this is a fresh git clone and following steps from the readme:
|
try taints as an empty list. |
while this PR might not be related to the error, we do need to investigate this further so please bear with us, and actually i'll be out this week so i'll leave it to Paul for time being (and i already DM him so hopefully he'll take a look at this when he gets the chance), appreciate your patience in advance! |
I can reproduce your error: helm upgrade --install -n openshift-machine-api test .
Release "test" does not exist. Installing it now.
Error: 3 errors occurred:
* admission webhook "default.machineset.machine.openshift.io" denied the request: json: cannot unmarshal object into Go struct field MachineSpec.spec.template.spec.taints of type []v1.Taint
* admission webhook "default.machineset.machine.openshift.io" denied the request: json: cannot unmarshal object into Go struct field MachineSpec.spec.template.spec.taints of type []v1.Taint
* admission webhook "default.machineset.machine.openshift.io" denied the request: json: cannot unmarshal object into Go struct field MachineSpec.spec.template.spec.taints of type []v1.Taint
aro-machinesets oc version
Client Version: 4.16.5
Kustomize Version: v5.0.4-0.20230601165947-6ce0bf390ce3
Server Version: 4.14.33
Kubernetes Version: v1.27.15+6147456 and if I change the default values as I suggested previously, it will pass: helm upgrade --install -n openshift-machine-api test .
Release "test" has been upgraded. Happy Helming!
NAME: test
LAST DEPLOYED: Wed Aug 14 15:22:50 2024
NAMESPACE: openshift-machine-api
STATUS: deployed
REVISION: 2
TEST SUITE: None
aro-machinesets git diff
diff --git a/charts/aro-machinesets/values.yaml b/charts/aro-machinesets/values.yaml
index c6436f8..d672ffc 100644
--- a/charts/aro-machinesets/values.yaml
+++ b/charts/aro-machinesets/values.yaml
@@ -16,7 +16,7 @@ machineLabels: {}
# uncomment this to have infra-nodes
# node-role.kubernetes.io/infra: ""
-machineTaints: {}
+machineTaints: []
# uncomment this to have dedicated infra-nodes with taints
# - key: node-role.kubernetes.io/infra
# effect: NoSchedule |
@diana-sari old problem fixed in this PR. CC @paulczar |
@diana-sari ? @paulczar ? Are there any other maintainers? Is this project still actively maintained? |
sorry @davidkarlsen we've got a mix of vacations and illness on the maintainer group. I'm looking at this today. |
@paulczar PTAL