Skip to content

Commit 9f61090

Browse files
committed
comment parameters like recommended by Helm: "begin with the name of the property"
1 parent 30c3048 commit 9f61090

File tree

20 files changed

+386
-192
lines changed

20 files changed

+386
-192
lines changed

charts/o-neko-catnip/values.yaml

Lines changed: 62 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
## @section Common parameters
22
##
33

4-
## @param nameOverride String to partially override the name
4+
# nameOverride String to partially override the name
55
nameOverride: ""
66

7-
## @param fullnameOverride String to fully override the release name
7+
# fullnameOverride String to fully override the release name
88
fullnameOverride: ""
99

10-
## @param imagePullSecrets Docker registry secret names as an array
10+
# imagePullSecrets Docker registry secret names as an array
1111
imagePullSecrets: []
1212

13-
## @param hostAliases Host aliases available to the application
13+
# hostAliases Host aliases available to the application
1414
hostAliases:
1515

16-
## @param resources.limits The resource limits for the container
17-
## @param resources.requests The resource requests for the container
16+
# resources.limits The resource limits for the container
17+
# resources.requests The resource requests for the container
1818
resources:
1919
limits: {}
2020
requests: {}
@@ -25,54 +25,54 @@ resources:
2525

2626
oneko:
2727

28-
## @param oneko.image.name O-Neko Catnip image repository
29-
## @param oneko.image.tag O-Neko Catnip image tag
30-
## @param oneko.image.imagePullPolicy Image Pull Policy
28+
# oneko.image.name O-Neko Catnip image repository
29+
# oneko.image.tag O-Neko Catnip image tag
30+
# oneko.image.imagePullPolicy Image Pull Policy
3131
image:
3232
name: subshellgmbh/o-neko-catnip
3333
tag: 1.3.2
3434
imagePullPolicy: IfNotPresent
3535

36-
## @param oneko.api.baseUrl The base URL of the O-Neko installation, e.g. my.oneko.com
37-
## @param oneko.api.auth.secretName The name of the secret which contains the O-Neko credentials
36+
# oneko.api.baseUrl The base URL of the O-Neko installation, e.g. my.oneko.com
37+
# oneko.api.auth.secretName The name of the secret which contains the O-Neko credentials
3838
api:
3939
baseUrl:
4040
auth:
4141
secretName:
4242

43-
## @param oneko.catnipUrl The base URL of the O-Neko Catnip installation, e.g. catnip.oneko.com
43+
# oneko.catnipUrl The base URL of the O-Neko Catnip installation, e.g. catnip.oneko.com
4444
catnipUrl:
4545

46-
## @param oneko.useSeparateMetricsPort Whether to host metrics on a different port
46+
# oneko.useSeparateMetricsPort Whether to host metrics on a different port
4747
useSeparateMetricsPort: true
4848

4949
## @section Probes
5050
##
5151

52-
## @param startupProbe.failureThreshold Failure threshold for startupProbe
53-
## @param startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
54-
## @param startupProbe.timeoutSeconds Timeout seconds for startupProbe
55-
## @param startupProbe.periodSeconds Period seconds for startupProbe
52+
# startupProbe.failureThreshold Failure threshold for startupProbe
53+
# startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
54+
# startupProbe.timeoutSeconds Timeout seconds for startupProbe
55+
# startupProbe.periodSeconds Period seconds for startupProbe
5656
startupProbe:
5757
failureThreshold: 10
5858
initialDelaySeconds: 0
5959
timeoutSeconds: 1
6060
periodSeconds: 2
6161

62-
## @param readinessProbe.failureThreshold Failure threshold for readinessProbe
63-
## @param readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
64-
## @param readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
65-
## @param readinessProbe.periodSeconds Period seconds for readinessProbe
62+
# readinessProbe.failureThreshold Failure threshold for readinessProbe
63+
# readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
64+
# readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
65+
# readinessProbe.periodSeconds Period seconds for readinessProbe
6666
readinessProbe:
6767
failureThreshold: 3
6868
initialDelaySeconds: 0
6969
timeoutSeconds: 5
7070
periodSeconds: 1
7171

72-
## @param livenessProbe.failureThreshold Failure threshold for livenessProbe
73-
## @param livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
74-
## @param livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
75-
## @param livenessProbe.periodSeconds Period seconds for livenessProbe
72+
# livenessProbe.failureThreshold Failure threshold for livenessProbe
73+
# livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
74+
# livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
75+
# livenessProbe.periodSeconds Period seconds for livenessProbe
7676
livenessProbe:
7777
failureThreshold: 3
7878
initialDelaySeconds: 0
@@ -83,76 +83,76 @@ livenessProbe:
8383
##
8484

8585
service:
86-
## @param service.annotations annotations for the service
86+
# service.annotations annotations for the service
8787
annotations: {}
88-
## @param service.type Kubernetes service type
88+
# service.type Kubernetes service type
8989
type:
90-
## @param service.sessionAffinity the service's sessionAffinity
90+
# service.sessionAffinity the service's sessionAffinity
9191
sessionAffinity: None
92-
## @param service.sessionAffinityConfig additional sessionAffinity configuration
92+
# service.sessionAffinityConfig additional sessionAffinity configuration
9393
sessionAffinityConfig: {}
94-
## @param service.loadBalancerIP A loadBalancerIP configuration
94+
# service.loadBalancerIP A loadBalancerIP configuration
9595
loadBalancerIP:
96-
## @param service.clusterIP The service's clusterIP
96+
# service.clusterIP The service's clusterIP
9797
clusterIP:
9898

9999

100100

101101
ingress:
102-
## @param ingress.ingressClassName name of the ingressClass used for the ingress
102+
# ingress.ingressClassName name of the ingressClass used for the ingress
103103
ingressClassName:
104-
## @param ingress.hosts Array with hostnames used for the ingress
105-
## e.g.
106-
## hosts:
107-
## - host: "catnip.oneko.com"
104+
# ingress.hosts Array with hostnames used for the ingress
105+
# e.g.
106+
# hosts:
107+
# - host: "catnip.oneko.com"
108108
hosts:
109-
## @param ingress.tls TLS configuration of the ingress as an array
110-
## e.g.
111-
## tls:
112-
## - hosts:
113-
## - "catnip.oneko.com"
114-
## secretName: catnip-tls
109+
# ingress.tls TLS configuration of the ingress as an array
110+
# e.g.
111+
# tls:
112+
# - hosts:
113+
# - "catnip.oneko.com"
114+
# secretName: catnip-tls
115115
tls:
116-
## @param ingress.annotations annotations for the ingress
116+
# ingress.annotations annotations for the ingress
117117
annotations: {}
118-
## @param ingress.defaultBackend.enabled Whether the default backend should be enabled or not
118+
# ingress.defaultBackend.enabled Whether the default backend should be enabled or not
119119
defaultBackend:
120120
enabled: false
121121

122122
httpRoute:
123-
## @param httpRoute.enabled Whether to create an HTTPRoute resource (Gateway API)
123+
# httpRoute.enabled Whether to create an HTTPRoute resource (Gateway API)
124124
enabled: false
125-
## @param httpRoute.parentRefs References to the Gateway resources that the HTTPRoute should attach to
126-
## e.g.
127-
## parentRefs:
128-
## - name: my-gateway
129-
## namespace: gateway-namespace
125+
# httpRoute.parentRefs References to the Gateway resources that the HTTPRoute should attach to
126+
# e.g.
127+
# parentRefs:
128+
# - name: my-gateway
129+
# namespace: gateway-namespace
130130
parentRefs: []
131-
## @param httpRoute.hostnames Array with hostnames used for the HTTPRoute
132-
## e.g.
133-
## hostnames:
134-
## - "catnip.oneko.com"
131+
# httpRoute.hostnames Array with hostnames used for the HTTPRoute
132+
# e.g.
133+
# hostnames:
134+
# - "catnip.oneko.com"
135135
hostnames: []
136-
## @param httpRoute.pathMatchType Path match type for the HTTPRoute (PathPrefix, Exact, or RegularExpression)
136+
# httpRoute.pathMatchType Type specifies how to match against the HTTP request path. (PathPrefix, Exact or RegularExpression)
137137
pathMatchType: PathPrefix
138-
## @param httpRoute.pathValue Path value for the HTTPRoute
138+
# httpRoute.pathValue Value of the HTTP request path to match against.
139139
pathValue: /
140-
## @param httpRoute.annotations annotations for the HTTPRoute
140+
# httpRoute.annotations annotations for the HTTPRoute
141141
annotations: {}
142142

143143
## @section Metrics and Alerting
144144
##
145145
## Specific for the use with the kube-prometheus-stack
146146

147-
## @param serviceMonitor.enabled Whether the serviceMonitor resource should be deployed
148-
## @param serviceMonitor.interval Prometheus scrape interval
147+
# serviceMonitor.enabled Whether the serviceMonitor resource should be deployed
148+
# serviceMonitor.interval Prometheus scrape interval
149149
serviceMonitor:
150150
enabled: false
151151
interval: 10s
152152

153-
## @param prometheusRule.enabled Whether the prometheusRule resource should be deployed
154-
## @param prometheusRule.defaultRulesEnabled Whether the default alerting rules should be enabled or not
155-
## @param prometheusRule.rules Custom alerting rules which can be deployed
153+
# prometheusRule.enabled Whether the prometheusRule resource should be deployed
154+
# prometheusRule.defaultRulesEnabled Whether the default alerting rules should be enabled or not
155+
# prometheusRule.rules Custom alerting rules which can be deployed
156156
prometheusRule:
157157
enabled: false
158158
defaultRulesEnabled: true

0 commit comments

Comments
 (0)