generated from MacroPower/go_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchart.k
26 lines (21 loc) · 811 Bytes
/
chart.k
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
"""
import helm
schema Chart(helm.Chart):
r"""
All possible chart configuration, inheriting from `helm.Chart(helm.ChartBase)`.
Attributes
----------
values : Values | any, optional
chart : str, required, default is "podinfo"
repoURL : str, required, default is "https://stefanprodan.github.io/podinfo"
targetRevision : str, optional, default is "6.8.0"
schemaValidator : "KCL" | "HELM", optional, default is "KCL"
"""
values?: Values | any
chart: str = "podinfo"
repoURL: str = "https://stefanprodan.github.io/podinfo"
targetRevision?: str = "6.8.0"
schemaValidator?: "KCL" | "HELM" = "KCL"