filename | sha256 hash |
---|---|
kubernetes.tar.gz | 53db157923c17fa7a0addb3e4dfe7d1b9194b9266a87d371a251d5bb790a1832 |
kubernetes-src.tar.gz | e6e46831706743d8263581d0575507cf5ffc265096d22e5e84cf1c3ae925db5e |
filename | sha256 hash |
---|---|
kubernetes-client-darwin-386.tar.gz | 8418767e45c62c2ef5f9b4479ed02af64e190ce07dcbafa1920e93e71f419c55 |
kubernetes-client-darwin-amd64.tar.gz | 41d742c2c55e7686311978eaaddee3844b990a0fe49fa8597158bcb0ee4c05c9 |
kubernetes-client-linux-386.tar.gz | 619e0a450cddf10ed1d42ed1d6330d41a75b9c1e00eb654cbe4b0422cd6099c5 |
kubernetes-client-linux-amd64.tar.gz | 9a5fcd87514b88eb25173e574aef5b5343816c07ab5947d06787c9f12c40f54a |
kubernetes-client-linux-arm.tar.gz | fd6e39b4a56e03448382825f27f4f30a2e981a8d20f4a8cedbd084bbb4577d42 |
kubernetes-client-windows-386.tar.gz | 862625cb3d9445cff1b09e4ebcdb60dd93b5b2dc34bb6022d2eeed7c8d8bc5d8 |
kubernetes-client-windows-amd64.tar.gz | 054337e41187e39950de93e4670bc78a95b6901cc2f95c50ff437d9825ae94c5 |
filename | sha256 hash |
---|---|
kubernetes-server-linux-amd64.tar.gz | fef041e9cbe5bcf8fd708f81ee2e2783429af1ab9cfb151d645ef9be96e19b73 |
kubernetes-server-linux-arm.tar.gz | ce02d7bcd75c31db4f7b9922c19ea2a3312b0ba579b0dcd96b279b661eca18a8 |
binary | sha1 hash | md5 hash |
---|---|---|
kubernetes.tar.gz | 50023455d00af52c41a7158b4bd117b2dfd4a100 |
cf0411bcb620eb13b08b93578efffc43 |
binary | sha1 hash | md5 hash |
---|---|---|
kubernetes.tar.gz | ddf12d7f37dfef25308798d71ad547761d0785ac |
69d770df8fa4eceb57167e34df3962ca |
binary | sha1 hash | md5 hash |
---|---|---|
kubernetes.tar.gz | f3aea83f8f0e16b2b41998a2edc09eb42fd8d945 |
ab0aca3a20e8eba43c8ff9d672793618 |
binary | sha1 hash | md5 hash |
---|---|---|
kubernetes.tar.gz | b2ce4e0c72562d09ba06e3c0913f0bd78da0285e |
69e75650de30d5a52d144799e94a168d |
binary | sha1 hash | md5 hash |
---|---|---|
kubernetes.tar.gz | 8dede5833a1986434adea80749624f81a0db7bb4 |
72a5389f22827fb5133fdc3b7bfb9b3a |
binary | sha1 hash | md5 hash |
---|---|---|
kubernetes.tar.gz | 1639807c5788e1c6b1ab51fd30b723fb5debd865 |
235a1da47972c96a560d718d3256ca4f |
binary | sha1 hash | md5 hash |
---|---|---|
kubernetes.tar.gz | 52dd998e1191f464f581a9b87017d70ce0b058d9 |
c0ce9e6150e9d7a19455db82f3318b4c |
apiVersion: batch/v1
is now available. You now do not need to specify the .spec.selector
field — a unique selector is automatically generated for you.apiVersion: extensions/v1beta1
, is still supported. Even if you roll back to 1.1, the objects created using
the new apiVersion will still be accessible, using the old version. You can
continue to use your existing JSON and YAML files until you are ready to switch
to batch/v1
. We may remove support for Jobs with apiVersion: extensions/v1beta1
in 1.3 or 1.4.apiVersion: autoscaling/v1
is now available. Changes in this version are:
apiVersion: extensions/v1beta1
, is still supported. Even if you roll back to 1.1, the objects created using
the new apiVersions will still be accessible, using the old version. You can
continue to use your existing JSON and YAML files until you are ready to switch
to autoscaling/v1
. We may remove support for HorizontalPodAutoscalers with apiVersion: extensions/v1beta1
in 1.3 or 1.4.In, NotIn, Exists, DoesNotExist, Gt, Lt
} instead of just conjunction of exact match on node label values. In
addition, we’ve introduced a new “soft” kind of node selector that is just a
hint to the scheduler; the scheduler will try to satisfy these requests but it
does not guarantee they will be satisfied. Both the “hard” and “soft” variants
of node affinity use the new syntax. Documentation is here (see section “Alpha feature in Kubernetes v1.2: Node Affinity“). Design doc is here.pod.beta.kubernetes.io/hostname, pod.beta.kubernetes.io/subdomain)
. If the Subdomain matches the name of a headless service in the same namespace, a DNS A record is also created for the pod’s FQDN. More
details can be found in the DNS README. Changes were introduced in PR #20688./pkg/client/unversioned
) to create Job by defining Go variables of type "k8s.io/kubernetes/pkg/apis/extensions".Job
). We think this is not common, so if you are not sure what this means, you probably aren't doing this. If
you do this, then, at the time you re-vendor the "k8s.io/kubernetes/"
code, you will need to set job.Spec.ManualSelector = true
, or else set job.Spec.Selector = nil.
Otherwise, the jobs you create may be rejected. See Specifying your own pod selector.targetSelector
field in its status. This field supports the new set-based selectors supported
by Deployments, but in a serialized format.curl -H "Content-Type: application/json" -XPOST -d
'{"apiVersion":"v1","kind":"Namespace","metadata":{"name":"kube-system"}}' "http://127.0.0.1:8080/api/v1/namespaces"
Core changes:
Core changes:
With kube-up:
Please see the Releases Page for older releases.