Clayton Coleman
be3ce22dd3
Add TerminationMessagePolicy
2017-01-23 12:26:00 -05:00
Michail Kargakis
1d3748d7e5
registry: invalidate updates to non-convertible selectors
2017-01-21 23:42:55 +01:00
Michael Fraenkel
08d0c86629
Generated code
2017-01-20 10:06:24 -06:00
Michael Fraenkel
eb5d59467e
Portforward API
2017-01-20 09:48:05 -06:00
Michael Fraenkel
5048c01861
Generated code
2017-01-19 14:07:10 -05:00
Michael Fraenkel
13d693d220
Secrets can populate environment variables
2017-01-19 13:46:05 -05:00
Kubernetes Submit Queue
e9d4e4341c
Merge pull request #40087 from deads2k/generic-24-move-fields
...
Automatic merge from submit-queue
move pkg/fields to apimachinery
Purely mechanical move of `pkg/fields` to apimachinery.
Discussed with @lavalamp on slack. Moving this an `labels` to apimachinery.
@liggitt any concerns? I think the idea of field selection should become generic and this ends up shared between client and server, so this is a more logical location.
2017-01-19 08:48:17 -08:00
deads2k
11e8068d3f
move pkg/fields to apimachinery
2017-01-19 09:50:16 -05:00
Klaus Ma
604957c11c
Added generated codes.
2017-01-19 20:20:08 +08:00
Klaus Ma
c8c4b81963
Made multi-scheduler graduated to Beta and then v1.
2017-01-19 20:16:01 +08:00
Clayton Coleman
9a2a50cda7
refactor: use metav1.ObjectMeta in other types
2017-01-17 16:17:19 -05:00
Clayton Coleman
36acd90aba
Move APIs and core code to use metav1.ObjectMeta
2017-01-17 16:17:18 -05:00
Clayton Coleman
54d8ed001d
Move ObjectMeta to metav1
2017-01-17 16:17:13 -05:00
deads2k
a6b655fb6a
add back just enough empty packages to allow heapster cycles to succeed
2017-01-17 08:07:30 -05:00
deads2k
8686d67c80
move pkg/util/rand
2017-01-16 16:04:03 -05:00
Clayton Coleman
dcd6e1d833
generated: protobuf for types
2017-01-13 16:20:04 -05:00
Robert Rati
6a3ad93d6c
[scheduling] Moved pod affinity and anti-affinity from annotations to api
...
fields. #25319
2017-01-12 14:54:29 -05:00
Dr. Stefan Schimanski
2741eb7fdb
Update generated files
2017-01-11 21:54:07 +01:00
deads2k
6a4d5cd7cc
start the apimachinery repo
2017-01-11 09:09:48 -05:00
Clayton Coleman
f07c6486ba
Rename metav1.Event to metav1.WatchEvent to avoid swagger collision
...
The kind on this object was always WatchEvent
2017-01-06 23:45:04 -05:00
Clayton Coleman
c5d755dbec
Refactor tests to match new versioned code structure
2017-01-06 23:45:03 -05:00
Clayton Coleman
e5019de260
refactor: Move versioned/watch to meta/v1
2017-01-06 23:45:03 -05:00
Kubernetes Submit Queue
07ce35a325
Merge pull request #39490 from deads2k/generic-16-bump-gengo
...
Automatic merge from submit-queue (batch tested with PRs 39466, 39490, 39527)
bump gengo to latest
bumping gengo to limit surprises while working on https://github.com/kubernetes/kubernetes/pull/39475
@kubernetes/sig-api-machinery-misc
2017-01-06 11:30:13 -08:00
deads2k
f86447c9a0
files regenerated after update
2017-01-06 11:45:40 -05:00
Jeff Grafton
20d221f75c
Enable auto-generating sources rules
2017-01-05 14:14:13 -08:00
Kubernetes Submit Queue
819535b96a
Merge pull request #36245 from fraenkel/env_configmap
...
Automatic merge from submit-queue (batch tested with PRs 38433, 36245)
Allow pods to define multiple environment variables from a whole ConfigMap
Allow environment variables to be populated from ConfigMaps
- ConfigMaps represent an entire set of EnvVars
- EnvVars can override ConfigMaps
fixes #26299
2017-01-03 23:28:09 -08:00
Kubernetes Submit Queue
064132d84a
Merge pull request #39284 from bowei/remove-host-record
...
Automatic merge from submit-queue (batch tested with PRs 39284, 39367)
Remove HostRecord annotation (beta feature)
The annotation has made it to GA so this code should be deleted.
**Release note**:
```release-note
The 'endpoints.beta.kubernetes.io/hostnames-map' annotation is no longer supported. Users can use the 'Endpoints.subsets[].addresses[].hostname' field instead.
```
2017-01-03 19:20:08 -08:00
Michael Fraenkel
94866b3bee
Generated code
2017-01-03 11:45:38 -05:00
Michael Fraenkel
2d803afc98
ConfigMaps populate environment variables
2017-01-03 11:02:15 -05:00
Kubernetes Submit Queue
cc0b17eaa1
Merge pull request #38574 from k82cn/k8s_38542
...
Automatic merge from submit-queue
Add default imagePullPolicy for initContainers.
fixes #38542
2017-01-02 06:03:05 -08:00
Jeff Grafton
fae627dd65
Update generated for 2017
2017-01-01 23:11:09 -08:00
Mike Danese
161c391f44
autogenerated
2016-12-29 13:04:10 -08:00
Bowei Du
589f58ca39
Remove HostRecord annotation (beta feature)
...
The annotation has made it to GA so this code should be deleted.
2016-12-28 12:47:08 -08:00
Klaus Ma
cd6792ae08
Add default imagePullPolicy for initContainers.
2016-12-22 09:29:43 +08:00
Robert Rati
11c577f092
[scheduling] Auto-generated file updates from moving node affinity from
...
annotations to api fields. #35518
2016-12-16 11:42:43 -05:00
Robert Rati
91931c138e
[scheduling] Moved node affinity from annotations to api fields. #35518
2016-12-16 11:42:43 -05:00
Kubernetes Submit Queue
702f545aab
Merge pull request #37968 from sjenning/qos-pod-status-field
...
Automatic merge from submit-queue (batch tested with PRs 38171, 37968)
add QoS pod status field
Right now, applications retrieving pod information must reimplement the QoS classification logic on the client side if they wish to know the QoS class of the pod.
The PR adds the QoS class to the pod status so it can be used directly by clients.
This is a step toward addressing #33255
@ConnorDoyle @derekwaynecarr @vishh
2016-12-13 11:51:35 -08:00
Seth Jennings
12b254db93
add QoS pod status field
2016-12-12 21:22:03 -06:00
Mike Danese
c87de85347
autoupdate BUILD files
2016-12-12 13:30:07 -08:00
Clayton Coleman
c52d510a24
refactor: generated
2016-12-10 18:05:53 -05:00
Clayton Coleman
3c72ee2189
Change references to OwnerReference
2016-12-10 18:05:36 -05:00
Clayton Coleman
da521d3768
Remove pkg/api* OwnerReference
2016-12-10 18:05:35 -05:00
Clayton Coleman
c30862a488
Move OwnerReference to pkg/apis/meta/v1 and remove metatypes pkg
...
OwnerReference is common.
2016-12-10 18:05:28 -05:00
Kubernetes Submit Queue
63da5cfec7
Merge pull request #37860 from derekwaynecarr/add-missing-doc
...
Automatic merge from submit-queue
Add documentation for FinalizerName
Fixes https://github.com/kubernetes/kubernetes.github.io/issues/1829
/cc @caesarxuchao
2016-12-09 13:03:23 -08:00
Kubernetes Submit Queue
129f5d8b95
Merge pull request #38278 from hodovska/external-name-no-ports
...
Automatic merge from submit-queue
API v1: do not require ports for all types of services
Ports values had to be specified for all types of services but object with service type "ExternalName" does't define ports. That's why we had to remove required condition.
Presence of ports in service types where ports are actually required is verified here:
https://github.com/kubernetes/kubernetes/blob/master/pkg/api/validation/validation.go#L2439
For more information about ExternalName services see:
http://kubernetes.io/docs/user-guide/services/#services-without-selectors
Fixes https://github.com/kubernetes/kubernetes/issues/34394
2016-12-08 23:43:14 -08:00
Alejandro Escobar
1e84257691
fixed a few kublet typos.
2016-12-07 11:23:12 -08:00
Dominika Hodovska
cb82ef8a60
API v1: ports are not required for all services
2016-12-07 12:20:28 +01:00
Wojciech Tyczynski
61d9fd6afc
Register GetOptions in all api groups
2016-12-06 11:48:37 +01:00
Wojciech Tyczynski
c1699253ff
Regenerate autogenerated files
2016-12-05 09:18:57 +01:00
Wojciech Tyczynski
69bb0fce86
Update comments for ListOptions
2016-12-05 08:19:46 +01:00