Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
d8540d78
Unverified
Commit
d8540d78
authored
Dec 14, 2016
by
Matt Butcher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(tiller): add fromYaml to template functions
This adds a fromYaml template function. Closes #1604
parent
736d9f8c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
49 additions
and
2 deletions
+49
-2
files.go
pkg/chartutil/files.go
+15
-0
files_test.go
pkg/chartutil/files_test.go
+31
-0
engine.go
pkg/engine/engine.go
+2
-1
engine_test.go
pkg/engine/engine_test.go
+1
-1
No files found.
pkg/chartutil/files.go
View file @
d8540d78
...
...
@@ -174,3 +174,18 @@ func ToYaml(v interface{}) string {
}
return
string
(
data
)
}
// FromYaml converts a YAML document into a map[string]interface{}.
//
// This is not a general-purpose YAML parser, and will not parse all valid
// YAML documents. Additionally, because its intended use is within templates
// it tolerates errors. It will insert the returned error message string into
// m["error"] in the returned map.
func
FromYaml
(
str
string
)
map
[
string
]
interface
{}
{
m
:=
map
[
string
]
interface
{}{}
if
err
:=
yaml
.
Unmarshal
([]
byte
(
str
),
&
m
);
err
!=
nil
{
m
[
"Error"
]
=
err
.
Error
()
}
return
m
}
pkg/chartutil/files_test.go
View file @
d8540d78
...
...
@@ -110,3 +110,34 @@ func TestToYaml(t *testing.T) {
t
.
Errorf
(
"Expected %q, got %q"
,
expect
,
got
)
}
}
func
TestFromYaml
(
t
*
testing
.
T
)
{
doc
:=
`hello: world
one:
two: three
`
dict
:=
FromYaml
(
doc
)
if
err
,
ok
:=
dict
[
"Error"
];
ok
{
t
.
Fatalf
(
"Parse error: %s"
,
err
)
}
if
len
(
dict
)
!=
2
{
t
.
Fatal
(
"expected two elements."
)
}
world
:=
dict
[
"hello"
]
if
world
.
(
string
)
!=
"world"
{
t
.
Fatal
(
"Expected the world. Is that too much to ask?"
)
}
// This should fail because we don't currently support lists:
doc2
:=
`
- one
- two
- three
`
dict
=
FromYaml
(
doc2
)
if
_
,
ok
:=
dict
[
"Error"
];
!
ok
{
t
.
Fatal
(
"Expected parser error"
)
}
}
pkg/engine/engine.go
View file @
d8540d78
...
...
@@ -70,7 +70,8 @@ func FuncMap() template.FuncMap {
// Add some extra functionality
extra
:=
template
.
FuncMap
{
"toYaml"
:
chartutil
.
ToYaml
,
"toYaml"
:
chartutil
.
ToYaml
,
"fromYaml"
:
chartutil
.
FromYaml
,
// This is a placeholder for the "include" function, which is
// late-bound to a template. By declaring it here, we preserve the
...
...
pkg/engine/engine_test.go
View file @
d8540d78
...
...
@@ -49,7 +49,7 @@ func TestFuncMap(t *testing.T) {
}
// Test for Engine-specific template functions.
expect
:=
[]
string
{
"include"
,
"toYaml"
}
expect
:=
[]
string
{
"include"
,
"toYaml"
,
"fromYaml"
}
for
_
,
f
:=
range
expect
{
if
_
,
ok
:=
fns
[
f
];
!
ok
{
t
.
Errorf
(
"Expected add-on function %q"
,
f
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment