Skip to content
This repository was archived by the owner on Jun 16, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# grumpy

Kubernetes Validation Admission Controller example. I have writen down [a guide explaining how it is has been built and how to run it](https://docs.giantswarm.io/guides/creating-your-own-admission-controller).
Kubernetes Validation Admission Controller example. I have written down [a guide explaining how it is has been built and how to run it](https://docs.giantswarm.io/guides/creating-your-own-admission-controller).
2 changes: 1 addition & 1 deletion grumpy.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func (gs *GrumpyServerHandler) serve(w http.ResponseWriter, r *http.Request) {
glog.Errorf("Can't encode response: %v", err)
http.Error(w, fmt.Sprintf("could not encode response: %v", err), http.StatusInternalServerError)
}
glog.Infof("Ready to write reponse ...")
glog.Infof("Ready to write response ...")
if _, err := w.Write(resp); err != nil {
glog.Errorf("Can't write response: %v", err)
http.Error(w, fmt.Sprintf("could not write response: %v", err), http.StatusInternalServerError)
Expand Down