From 90770feb1c5e1562a848548d137102bb5d363f93 Mon Sep 17 00:00:00 2001 From: Gerald Schmidt Date: Wed, 25 Jan 2017 21:31:25 +0100 Subject: [PATCH] updated readme --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ff197fe..302c331 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ As it's very early days the focus is on `deploymentConfig` objects. Screenshot of the OpenShift Linter GUI -**Fig. 2** OpenShift Linter GUI +**Fig. 2** OpenShift Linter GUI - use `/api/v1` instead of `/oapi/v1` to call Kubernetes directly Usage ----- @@ -106,10 +106,14 @@ With that, the workspace is ready. The default task (triggered by `gulp`) compil You can also run `gulp build`, `gulp test`, `gulp watch`, etc. individually if you wish. +How do I create my own checks? +------------------------------ +Add types that conform to the `LinterItem` interface, then register them in `items.go`. + Cross-compile for Windows ------------------------- To cross-compile Windows binaries on Linux or Mac, enter: ``` $ GOOS=windows GOARCH=amd64 go install -$ gulp windows +$ gulp build-win32 ```