From 3aa2cb8d3efe04eda8cf1d0d2dcb5ad8ddf21147 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 9 Mar 2018 15:17:54 +0100 Subject: refactor: Remove old error handling library MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removes the old error handling library and switches to plain fmt.Errorf calls. There are several reasons for this: * There are no useful types or handling here anyways, so output format is the only priority. * Users don't care about getting stacktraces. * My emotional wellbeing. Fin de siècle. --- example/some-api/some-api.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example') diff --git a/example/some-api/some-api.yaml b/example/some-api/some-api.yaml index 887eb69a99cc..f0188f9dbde3 100644 --- a/example/some-api/some-api.yaml +++ b/example/some-api/some-api.yaml @@ -4,7 +4,7 @@ kind: Secret metadata: name: secret-certificate data: - cert.pem: { passLookup "my/secret/certificate" | b64enc }} + cert.pem: {{ passLookup "my/secret/certificate" | b64enc }} --- apiVersion: extensions/v1beta1 kind: ConfigMap -- cgit 1.4.1