kops/pkg/model/gcemodel/external_access.go

85 lines
2.9 KiB
Go

/*
Copyright 2016 The Kubernetes Authors.
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 gcemodel
import (
"github.com/golang/glog"
"k8s.io/kops/pkg/apis/kops"
"k8s.io/kops/upup/pkg/fi"
"k8s.io/kops/upup/pkg/fi/cloudup/gcetasks"
)
// ExternalAccessModelBuilder configures security group rules for external access
// (SSHAccess, KubernetesAPIAccess)
type ExternalAccessModelBuilder struct {
*GCEModelContext
}
var _ fi.ModelBuilder = &ExternalAccessModelBuilder{}
func (b *ExternalAccessModelBuilder) Build(c *fi.ModelBuilderContext) error {
glog.Warningf("TODO: Harmonize gcemodel ExternalAccessModelBuilder with awsmodel")
if len(b.Cluster.Spec.KubernetesAPIAccess) == 0 {
glog.Warningf("KubernetesAPIAccess is empty")
}
if len(b.Cluster.Spec.SSHAccess) == 0 {
glog.Warningf("SSHAccess is empty")
}
// SSH is open to AdminCIDR set
if b.UsesSSHBastion() {
// If we are using a bastion, we only access through the bastion
// This is admittedly a little odd... adding a bastion shuts down direct access to the masters/nodes
// But I think we can always add more permissions in this case later, but we can't easily take them away
glog.V(2).Infof("bastion is in use; won't configure SSH access to master / node instances")
} else {
c.AddTask(&gcetasks.FirewallRule{
Name: s(b.SafeObjectName("ssh-external-to-master")),
TargetTags: []string{b.GCETagForRole(kops.InstanceGroupRoleMaster)},
Allowed: []string{"tcp:22"},
SourceRanges: b.Cluster.Spec.SSHAccess,
Network: b.LinkToNetwork(),
})
c.AddTask(&gcetasks.FirewallRule{
Name: s(b.SafeObjectName("ssh-external-to-node")),
TargetTags: []string{b.GCETagForRole(kops.InstanceGroupRoleNode)},
Allowed: []string{"tcp:22"},
SourceRanges: b.Cluster.Spec.SSHAccess,
Network: b.LinkToNetwork(),
})
}
if !b.UseLoadBalancerForAPI() {
// Configuration for the master, when not using a Loadbalancer (ELB)
// We expect that either the IP address is published, or DNS is set up to point to the IPs
// We need to open security groups directly to the master nodes (instead of via the ELB)
// HTTPS to the master is allowed (for API access)
c.AddTask(&gcetasks.FirewallRule{
Name: s(b.SafeObjectName("kubernetes-master-https")),
TargetTags: []string{b.GCETagForRole(kops.InstanceGroupRoleMaster)},
Allowed: []string{"tcp:443"},
SourceRanges: b.Cluster.Spec.KubernetesAPIAccess,
Network: b.LinkToNetwork(),
})
}
return nil
}