-
Notifications
You must be signed in to change notification settings - Fork 14.6k
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
Incorrect make command in https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#securing-the-service #17597
Comments
/kind bug |
PR for this (#17599 ) is merged & closed. Hence closing this issue. |
Though the make command & secret creation worked after the above change, the POD is going to CrashLoopBackOff when using this secret.
But when the secret is created using the yaml (from the alternate option given here), everything works fine. When the secret is created using the "kubectl create secret" command, the above error occurs. Any suggestions? Reopening the issue. |
Not sure I'll have time to look at this for a while |
This change worked for me and the container got created too without any issues. I'm closing this issue. |
This is a Bug Report
Problem:
The section Securing the service shows a make command:
But the first command fails with error:
make: *** No rule to make target ``secret'. Stop.
. And so the secret isn't created.As per the documentation, the make file is from nginx https example and in this Makefile, there is no target "Secret".
Proposed Solution:
As per the README of nginx https example, the above commands should be modified as:
This works.
Page to Update:
https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#securing-the-service
The text was updated successfully, but these errors were encountered: