Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
a9c03f29
Unverified
Commit
a9c03f29
authored
Feb 21, 2017
by
Clayton Coleman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UnstructuredList should return 'items' set to the children
The set of items is not mutable (can't add or remove items) but the list now is. Needs to be improved to make mutability is clear.
parent
3704ceff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
3 deletions
+52
-3
unstructured.go
...pimachinery/pkg/apis/meta/v1/unstructured/unstructured.go
+16
-3
unstructured_test.go
...hinery/pkg/apis/meta/v1/unstructured/unstructured_test.go
+36
-0
No files found.
staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured.go
View file @
a9c03f29
...
@@ -73,11 +73,24 @@ func (obj *Unstructured) UnstructuredContent() map[string]interface{} {
...
@@ -73,11 +73,24 @@ func (obj *Unstructured) UnstructuredContent() map[string]interface{} {
}
}
return
obj
.
Object
return
obj
.
Object
}
}
// UnstructuredContent returns a map contain an overlay of the Items field onto
// the Object field. Items always overwrites overlay. Changing "items" in the
// returned object will affect items in the underlying Items field, but changing
// the "items" slice itself will have no effect.
// TODO: expose SetUnstructuredContent on runtime.Unstructured that allows
// items to be changed.
func
(
obj
*
UnstructuredList
)
UnstructuredContent
()
map
[
string
]
interface
{}
{
func
(
obj
*
UnstructuredList
)
UnstructuredContent
()
map
[
string
]
interface
{}
{
if
obj
.
Object
==
nil
{
out
:=
obj
.
Object
obj
.
Object
=
make
(
map
[
string
]
interface
{})
if
out
==
nil
{
out
=
make
(
map
[
string
]
interface
{})
}
}
return
obj
.
Object
items
:=
make
([]
interface
{},
len
(
obj
.
Items
))
for
i
,
item
:=
range
obj
.
Items
{
items
[
i
]
=
item
.
Object
}
out
[
"items"
]
=
items
return
out
}
}
// MarshalJSON ensures that the unstructured object produces proper
// MarshalJSON ensures that the unstructured object produces proper
...
...
staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_test.go
0 → 100644
View file @
a9c03f29
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package
unstructured
import
"testing"
func
TestUnstructuredList
(
t
*
testing
.
T
)
{
list
:=
&
UnstructuredList
{
Object
:
map
[
string
]
interface
{}{
"kind"
:
"List"
,
"apiVersion"
:
"v1"
},
Items
:
[]
*
Unstructured
{
{
Object
:
map
[
string
]
interface
{}{
"kind"
:
"Pod"
,
"apiVersion"
:
"v1"
,
"metadata"
:
map
[
string
]
interface
{}{
"name"
:
"test"
}}},
},
}
content
:=
list
.
UnstructuredContent
()
items
:=
content
[
"items"
]
.
([]
interface
{})
if
len
(
items
)
!=
1
{
t
.
Fatalf
(
"unexpected items: %#v"
,
items
)
}
if
getNestedField
(
items
[
0
]
.
(
map
[
string
]
interface
{}),
"metadata"
,
"name"
)
!=
"test"
{
t
.
Fatalf
(
"unexpected fields: %#v"
,
items
[
0
])
}
}
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