-
Notifications
You must be signed in to change notification settings - Fork 40.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move unstructured types under meta/v1
to indicate they are typed
#38058
Move unstructured types under meta/v1
to indicate they are typed
#38058
Conversation
1cc8cd4
to
7b09691
Compare
Jenkins kops AWS e2e failed for commit 7b09691a9520a1f5a176d19f89876f9060fba20d. Full PR test history. The magic incantation to run this job again is |
7b09691
to
f8d03e2
Compare
f8d03e2
to
2eec3c8
Compare
@stts can you review? |
@smarterclayton Apologies. I'm swamped with release duties right now. I probably can't get to this this week. |
It's fine - will reach out to others (it's a fairly mechanical change
except for a few new things created in pkg/runtime to support the move)
@deads2k as well
…On Tue, Dec 6, 2016 at 1:08 PM, krousey ***@***.***> wrote:
@smarterclayton <https://github.com/smarterclayton> Apologies. I'm
swamped with release duties right now. I probably can't get to this this
week.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#38058 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABG_p1yhezqc0t1ygv_LfWOt2M6dPPcJks5rFaSJgaJpZM4LDfuu>
.
|
a2df283
to
9b3e6f7
Compare
Jenkins unit/integration failed for commit a2df2830b6e6c5cee27a8f0939aece953ddb7907. Full PR test history. The magic incantation to run this job again is |
Jenkins CRI GCE Node e2e failed for commit a2df2830b6e6c5cee27a8f0939aece953ddb7907. Full PR test history. The magic incantation to run this job again is |
Jenkins GCE Node e2e failed for commit a2df2830b6e6c5cee27a8f0939aece953ddb7907. Full PR test history. The magic incantation to run this job again is |
Jenkins verification failed for commit d884893. Full PR test history. The magic incantation to run this job again is |
|
||
func (obj *Unstructured) UnstructuredContent() map[string]interface{} { | ||
if obj.Object == nil { | ||
obj.Object = make(map[string]interface{}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
intentional to modify it in an accessor?
IsUnstructuredObject() | ||
// IsList returns true if this type is a list or matches the list convention - has an array called "items". | ||
IsList() bool | ||
// UnstructuredContent returns a non-nil, mutable map of the contents of this object. Values may be |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mutable
answers my previous question about modifying in an accessor.
@@ -29,9 +29,8 @@ func IsListType(obj runtime.Object) bool { | |||
// if we're a runtime.Unstructured, check to see if we have an `items` key |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
outdated godocs
Not from me. |
8babc77
to
4c0d6e2
Compare
Jenkins GCI GKE smoke e2e failed for commit 4c0d6e2717b5820e26988a23210b4aff88a8012f. Full PR test history. The magic incantation to run this job again is |
|
Jenkins CRI GCE e2e failed for commit 4c0d6e2717b5820e26988a23210b4aff88a8012f. Full PR test history. The magic incantation to run this job again is |
It is a versioned type.
OwnerReference is common.
Avoid directly accessing an unstructured type if it is not required.
Also ensure meta/v1 swagger docs are generated.
4c0d6e2
to
42e0eda
Compare
Green again. Applying label since all comments addressed and more refactorings on the way (any further feedback will apply in the next round). |
@k8s-bot test this [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue (batch tested with PRs 38058, 38523) |
Add a few abstractions that make them simpler to use from generic code that does not need accessors. Move OwnerReference to meta/v1 and remote metatypes.go
Part of #37530