Skip to content

Commit

Permalink
fix: correct misspelled function name (#787)
Browse files Browse the repository at this point in the history
  • Loading branch information
rainest committed Aug 23, 2023
1 parent f0fadf7 commit cdff0d8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# Changelog

## v0.38.0

### Breaking changes

- Fix an API name typo. The `WithAdditonalValue` Kong addon builder method is
now `WithAdditionalValue`

## v0.37.0

### Added

- Allow specifying arbitrary helm values when deploying `Kong` addon.
- Allow specifying arbitrary helm values when deploying Kong addon.
[#776](https://github.com/Kong/kubernetes-testing-framework/pull/776)

## v0.36.0
Expand Down
2 changes: 1 addition & 1 deletion pkg/clusters/addons/kong/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ func (b *Builder) WithProxyReadinessProbePath(path string) *Builder {
}

// WithAdditionalValue sets arbitrary value of installing by helm.
func (b *Builder) WithAdditonalValue(name, value string) *Builder {
func (b *Builder) WithAdditionalValue(name, value string) *Builder {
b.additionalValues[name] = value
return b
}

0 comments on commit cdff0d8

Please sign in to comment.