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"
|
|
|
|
)
|
|
|
|
|
2024-01-07 21:36:17 +00:00
|
|
|
// DefaultAdmissionControllers are admission controllers we default to
|
|
|
|
var DefaultAdmissionControllers = []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
|
|
|
}
|
|
|
|
|
2024-01-07 21:36:17 +00:00
|
|
|
// ServiceClusterIP returns the first IP of the ServiceCIDR
|
|
|
|
func ServiceClusterIP(serviceCIDR string) (net.IP, error) {
|
2017-10-20 15:37:21 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2024-01-07 21:36:17 +00:00
|
|
|
// DNSIP returns x.x.x.10 of the service CIDR
|
|
|
|
func DNSIP(serviceCIDR string) (net.IP, error) {
|
2017-10-20 15:37:21 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2024-01-07 21:36:17 +00:00
|
|
|
// AlternateDNS returns a list of alternate names for a domain
|
|
|
|
func AlternateDNS(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
|
|
|
}
|