helm / helm-www

The Helm website for docs, blog and project info.
https://helm.sh
MIT License
200 stars 504 forks source link

make is clear duration expects a string #1599

Closed EliSzBr closed 1 month ago

EliSzBr commented 2 months ago
❯ helm version
version.BuildInfo{Version:"v3.15.2", GitCommit:"1a500d5625419a524fdae4b33de351cc4f58ec35", GitTreeState:"clean", GoVersion:"go1.22.4"}

❯ cat templates/main.yaml
kind: wow
metadata:
  name: amazing
data:
  int: {{ 1 | duration }}
  string: {{ "1" | duration }}

❯ helm template .
---
# Source: duration/templates/main.yaml
kind: wow
metadata:
  name: amazing
data:
  int: 0s
  string: 1s