2016-05-25 04:40:19 +00:00
|
|
|
/*
|
|
|
|
Copyright 2016 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.
|
|
|
|
*/
|
|
|
|
|
2016-05-18 23:33:47 +00:00
|
|
|
package util
|
|
|
|
|
2017-10-20 15:37:21 +00:00
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
2018-06-19 21:07:37 +00:00
|
|
|
// These constants are used by both minikube
|
2016-05-18 23:33:47 +00:00
|
|
|
const (
|
2019-12-22 21:50:32 +00:00
|
|
|
APIServerPort = 8443
|
|
|
|
DefaultDNSDomain = "cluster.local"
|
2016-05-18 23:33:47 +00:00
|
|
|
)
|
|
|
|
|
2019-03-06 21:32:33 +00:00
|
|
|
// DefaultV114AdmissionControllers are admission controllers we default to in v1.14.x
|
|
|
|
var DefaultV114AdmissionControllers = []string{
|
2018-02-14 17:22:14 +00:00
|
|
|
"NamespaceLifecycle",
|
|
|
|
"LimitRanger",
|
|
|
|
"ServiceAccount",
|
|
|
|
"DefaultStorageClass",
|
|
|
|
"DefaultTolerationSeconds",
|
|
|
|
"NodeRestriction",
|
|
|
|
"MutatingAdmissionWebhook",
|
2018-03-06 17:12:38 +00:00
|
|
|
"ValidatingAdmissionWebhook",
|
2018-03-07 04:50:22 +00:00
|
|
|
"ResourceQuota",
|
2018-02-14 17:22:14 +00:00
|
|
|
}
|
|
|
|
|
2019-03-20 23:45:39 +00:00
|
|
|
// DefaultLegacyAdmissionControllers are admission controllers we include with Kubernetes <1.14.0
|
2019-03-21 00:23:07 +00:00
|
|
|
var DefaultLegacyAdmissionControllers = append([]string{"Initializers"}, DefaultV114AdmissionControllers...)
|
2019-03-06 21:32:33 +00:00
|
|
|
|
2017-10-20 15:37:21 +00:00
|
|
|
// GetServiceClusterIP returns the first IP of the ServiceCIDR
|
|
|
|
func GetServiceClusterIP(serviceCIDR string) (net.IP, error) {
|
|
|
|
ip, _, err := net.ParseCIDR(serviceCIDR)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "parsing default service cidr")
|
|
|
|
}
|
|
|
|
ip = ip.To4()
|
|
|
|
ip[3]++
|
|
|
|
return ip, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetDNSIP returns x.x.x.10 of the service CIDR
|
|
|
|
func GetDNSIP(serviceCIDR string) (net.IP, error) {
|
|
|
|
ip, _, err := net.ParseCIDR(serviceCIDR)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "parsing default service cidr")
|
|
|
|
}
|
|
|
|
ip = ip.To4()
|
|
|
|
ip[3] = 10
|
|
|
|
return ip, nil
|
|
|
|
}
|
|
|
|
|
2019-03-16 13:12:18 +00:00
|
|
|
// GetAlternateDNS returns a list of alternate names for a domain
|
2016-05-18 23:33:47 +00:00
|
|
|
func GetAlternateDNS(domain string) []string {
|
2017-07-07 17:28:30 +00:00
|
|
|
return []string{"kubernetes.default.svc." + domain, "kubernetes.default.svc", "kubernetes.default", "kubernetes", "localhost"}
|
2016-05-18 23:33:47 +00:00
|
|
|
}
|