mirror of https://github.com/helm/helm
This commit fixes the issue where the yaml.Unmarshaller converts all int values into float64, this passes in option to decoder, which enables conversion of int into . Signed-off-by: Althaf M <althafm@outlook.com>pull/13533/head
parent
4aaacfcff1
commit
10d267ed8b
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
# Source: issue-totoml/templates/configmap.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: issue-totoml
|
||||||
|
data: |
|
||||||
|
key = 13
|
@ -0,0 +1,3 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
name: issue-totoml
|
||||||
|
version: 0.1.0
|
@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: issue-totoml
|
||||||
|
data: |
|
||||||
|
{{ .Values.global | toToml }}
|
@ -0,0 +1,2 @@
|
|||||||
|
global:
|
||||||
|
key: 13
|
Loading…
Reference in new issue