kubernetes/pkg/api/unversioned/well_known_labels.go
David Oppenheimer 053f1c6008 Update user guide and scheduler documentation to describe node affinity.
Register image priority locality function, which the original PR that introduced
it forgot to do. Change zone and region labels to beta.
2016-02-18 17:09:41 -08:00

23 lines
859 B
Go

/*
Copyright 2015 The Kubernetes Authors All rights reserved.
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 unversioned
const LabelHostname = "kubernetes.io/hostname"
const LabelZoneFailureDomain = "failure-domain.beta.kubernetes.io/zone"
const LabelZoneRegion = "failure-domain.beta.kubernetes.io/region"
const LabelInstanceType = "beta.kubernetes.io/instance-type"