@rophy123/helmtest 2.1.0 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Makefile CHANGED
@@ -5,3 +5,6 @@ help: ## Show this help.
5
5
 
6
6
  test: ## Run unit tests.
7
7
  docker run -t --rm -e DEBUG=helmtest -v `pwd`:/workspace rophy/helmtest
8
+
9
+ build: ## Build docker image.
10
+ docker build -t helmtest .
package/lib/helmtest.js CHANGED
@@ -31,7 +31,7 @@ async function renderTemplate(options = {}) {
31
31
 
32
32
  if (process.env.KUBECONFORM_EXTRA_ARGS) {
33
33
  const kcExtraArgs = process.env.KUBECONFORM_EXTRA_ARGS.split(' ');
34
- options.kubeConformArgs.concat(kcExtraArgs);
34
+ options.kubeconformArgs.concat(kcExtraArgs);
35
35
  }
36
36
 
37
37
  debug(`options: ${JSON.stringify(options)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rophy123/helmtest",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Write unit tests against your helm charts using JavaScript.",
5
5
  "main": "index.js",
6
6
  "bin": {