-
Notifications
You must be signed in to change notification settings - Fork 299
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
CSharp PUT wrappers #248
Comments
The |
Thanks. I see that it's sending a PUT request, but for services at least, the following code fails with a 404 if there is no service of that name.
kubectl version minikube version |
edited to correct 'doesn't' to 'does' 404 indicates that the namespace/name object doesn't exist. So either the name or the namespace in your call is wrong. PUT requires that the object does exist. If you want to create a new object, use --brendan |
My expectation was that PUT would support create-or-replace. Is that not currently supported? |
It appears that the API support PUT semantics (kubernetes/kubernetes#2114)
Are there plans to bring PUT wrappers to the CSharp client? I am not finding them right now.
The text was updated successfully, but these errors were encountered: