-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Option to support additional Service types (#202)
* added option to choose multiple service types * fixes based on review * fixed indentation and default service type * fixes based on review * bumped chart version to 1.36.0 * bumped version to 1.37.0 Signed-off-by: Ayush Tiwari <47293577+dbcelm@users.noreply.github.com> --------- Signed-off-by: Ayush Tiwari <47293577+dbcelm@users.noreply.github.com>
- Loading branch information
Showing
5 changed files
with
50 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
suite: test service | ||
templates: | ||
- templates/service.yaml | ||
tests: | ||
- it: should work | ||
set: | ||
service: | ||
type: ClusterIP | ||
asserts: | ||
- equal: | ||
path: spec.type | ||
value: ClusterIP | ||
- it: should render right if values given | ||
set: | ||
service: | ||
type: NodePort | ||
NodePort: 30200 | ||
asserts: | ||
- equal: | ||
path: spec.type | ||
value: NodePort | ||
- it: should render right if values given | ||
set: | ||
service: | ||
type: LoadBalancer | ||
asserts: | ||
- equal: | ||
path: spec.type | ||
value: LoadBalancer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters