-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introducing options from the CLI and unit test to confirm strict lint…
…ing of documentation comments
- Loading branch information
Showing
10 changed files
with
333 additions
and
10 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
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,15 @@ | ||
apiVersion: v2 | ||
name: nginx-ingress | ||
description: A simple wrapper around the stable/nginx-ingress chart that adds a few of our conventions | ||
version: "0.2.0" | ||
home: "https://github.com/norwoodj/helm-docs/tree/master/example-charts/nginx-ingress" | ||
sources: ["https://github.com/norwoodj/helm-docs/tree/master/example-charts/nginx-ingress"] | ||
engine: gotpl | ||
type: application | ||
maintainers: | ||
- email: norwood.john.m@gmail.com | ||
name: John Norwood | ||
dependencies: | ||
- name: nginx-ingress | ||
version: "0.22.1" | ||
repository: "@stable" |
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,34 @@ | ||
# nginx-ingress | ||
|
||
![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) | ||
|
||
A simple wrapper around the stable/nginx-ingress chart that adds a few of our conventions | ||
|
||
**Homepage:** <https://github.com/norwoodj/helm-docs/tree/master/example-charts/nginx-ingress> | ||
|
||
## Maintainers | ||
|
||
| Name | Email | Url | | ||
| ---- | ------ | --- | | ||
| John Norwood | <norwood.john.m@gmail.com> | | | ||
|
||
## Source Code | ||
|
||
* <https://github.com/norwoodj/helm-docs/tree/master/example-charts/nginx-ingress> | ||
|
||
## Requirements | ||
|
||
| Repository | Name | Version | | ||
|------------|------|---------| | ||
| @stable | nginx-ingress | 0.22.1 | | ||
|
||
## Values | ||
|
||
| Key | Type | Default | Description | | ||
|-----|------|---------|-------------| | ||
| controller | object | `{"image":{"repository":"nginx-ingress-controller","tag":"18.0831"},"name":"controller"}` | The controller | | ||
| controller.image | object | `{"repository":"nginx-ingress-controller","tag":"18.0831"}` | The image of the controller | | ||
| controller.image.repository | string | `"nginx-ingress-controller"` | The repository of the controller | | ||
| controller.image.tag | string | `"18.0831"` | The tag of the image of the controller | | ||
| controller.name | string | `"controller"` | The name of the controller | | ||
|
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,10 @@ | ||
# controller -- The controller | ||
controller: | ||
# controller.name -- The name of the controller | ||
name: controller | ||
# controller.image -- The image of the controller | ||
image: | ||
# controller.image.repository -- The repository of the controller | ||
repository: nginx-ingress-controller | ||
# controller.image.tag -- The tag of the image of the controller | ||
tag: "18.0831" |
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
Oops, something went wrong.