Unverified Commit 1a87d0e1 authored by Kevin Di Lallo's avatar Kevin Di Lallo Committed by GitHub
Browse files

Merge pull request #141 from dilallkx/kd_sp39_fix_helm

Meepctl Helm fix + Version bump to 1.5.4
parents f4c2d71d 21de3eae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version: 1.5.3
version: 1.5.4
repo:
  name: AdvantEDGE

+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ type versionInfo struct {
	BuildID   string `json:"build,omitempty"`
}

const meepctlVersion = "1.5.3"
const meepctlVersion = "1.5.4"
const na = "NA"

const versionDesc = `Display version information
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ import (
	yaml "gopkg.in/yaml.v2"
)

const configVersion = "1.5.3"
const configVersion = "1.5.4"

const defaultNotSet = "not set"

+7 −2
Original line number Diff line number Diff line
@@ -44,8 +44,13 @@ func IsHelmRelease(name string, cobraCmd *cobra.Command) (exist bool, err error)
		fmt.Println(err)
	} else {
		s := string(out)
		exist = strings.HasPrefix(s, name)

		lines := strings.Split(s, "\n")
		for _, line := range lines {
			if line == name {
				exist = true
				break
			}
		}
	}
	if verbose {
		r := FormatResult("Result: "+string(out), elapsed, cobraCmd)
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ const (
)

// Current validator version
var ValidatorVersion = semver.Version{Major: 1, Minor: 5, Patch: 3}
var ValidatorVersion = semver.Version{Major: 1, Minor: 5, Patch: 4}

// Versions requiring scenario update
var Version130 = semver.Version{Major: 1, Minor: 3, Patch: 0}