Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changelog and Chart version update #20

Merged
merged 2 commits into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/dogkat/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion charts/dogkat/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
8 changes: 4 additions & 4 deletions pkg/util/test_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading