From ea0e91507a01fd6844c9283a897ddc839f5218cd Mon Sep 17 00:00:00 2001 From: Drew Viles Date: Wed, 3 Jan 2024 12:23:47 +0000 Subject: [PATCH 1/2] updated changelog and chart version --- CHANGELOG.md | 6 ++++++ charts/dogkat/Chart.yaml | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef18a99..2820d31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ ### Deprecated +## [ 2024/01/03 - v0.1.1 ] + +### Changed/Added +* Added ability to run multiple or all tests in one go +* Updated go modules + ## [ 2024/01/03 - v0.1.0 ] ### Changed/Added diff --git a/charts/dogkat/Chart.yaml b/charts/dogkat/Chart.yaml index c0b4805..d20a76a 100644 --- a/charts/dogkat/Chart.yaml +++ b/charts/dogkat/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: dogkat -version: 0.1.0 -appVersion: 0.1.0 +version: 0.1.1 +appVersion: 0.1.1 type: application maintainers: - name: drew-viles From d695838012491b59aebbc2ca1a04782a05f53b13 Mon Sep 17 00:00:00 2001 From: Drew Viles Date: Wed, 3 Jan 2024 12:26:48 +0000 Subject: [PATCH 2/2] run helm docs and updated go based on yamllint output --- charts/dogkat/README.md | 2 +- pkg/util/test_types.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/dogkat/README.md b/charts/dogkat/README.md index f662401..ba7f037 100644 --- a/charts/dogkat/README.md +++ b/charts/dogkat/README.md @@ -1,6 +1,6 @@ # dogkat -![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square) +![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.1](https://img.shields.io/badge/AppVersion-0.1.1-informational?style=flat-square) End-2-End testing for GPUs and some core resources diff --git a/pkg/util/test_types.go b/pkg/util/test_types.go index 5b3688e..bffa7a6 100644 --- a/pkg/util/test_types.go +++ b/pkg/util/test_types.go @@ -30,27 +30,27 @@ func (t *TestTypes) GetType() string { test := "" if t.Core { if test == "" { - test = fmt.Sprintf("%s", constants.TestCore) + test = constants.TestCore } else { test = fmt.Sprintf("%s_%s", test, constants.TestCore) } } if t.Ingress { if test == "" { - test = fmt.Sprintf("%s", constants.TestIngress) + test = constants.TestIngress } else { test = fmt.Sprintf("%s_%s", test, constants.TestIngress) } } if t.GPU { if test == "" { - test = fmt.Sprintf("%s", constants.TestGPU) + test = constants.TestGPU } else { test = fmt.Sprintf("%s_%s", test, constants.TestGPU) } } if t.Core && t.Ingress && t.GPU { - test = fmt.Sprintf(constants.TestAll) + test = constants.TestAll } return test