git-to-k8s
Advanced tools
Comparing version 0.1.2 to 0.1.3
@@ -115,3 +115,3 @@ 'use strict' | ||
this.registry = options.registry | ||
} | ||
} | ||
} | ||
@@ -241,3 +241,3 @@ | ||
_run () { | ||
this.prepare() | ||
this.prepare() | ||
this.steps.forEach((_step, index) => { | ||
@@ -259,3 +259,3 @@ const step = typeof(_step) === 'object' ? _step : _step() | ||
logger.iinfo('dry running...') | ||
this.prepare() | ||
this.prepare() | ||
this.steps.forEach((_step, index) => { | ||
@@ -262,0 +262,0 @@ const step = typeof(_step) === 'function' ? _step() : _step |
{ | ||
"name": "git-to-k8s", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Small tool to automate the git to url flow on k8s", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -17,12 +17,12 @@ # git-to-k8s | ||
### Dependencies | ||
- helm initialize in cluster | ||
- helm initialized in Kubernetes cluster | ||
- docker available and logged in already to registry | ||
- git available | ||
### Steps for typical normal project: | ||
### Steps for a normal project: | ||
- commit project code to git repo | ||
- included deployment attributes and charts in package.json | ||
- use custom tool clone the repo, build images and push to container register | ||
- launch deploy with helm on k8s | ||
- use custom tool clone the repo, build images and push to container registry | ||
- launch deployment with helm on k8s (helm install or helm upgrade) | ||
@@ -29,0 +29,0 @@ ### Sample package.json: |
88056