mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-12-15 08:05:19 -05:00
Make Kubernetes serviceCIDR configurable in config (#2660)
* config: pass serviceCIDR to kubeadm init * terraform: add serviceCIDR
This commit is contained in:
parent
c2d1a7b7fb
commit
63cdd03d09
13 changed files with 103 additions and 61 deletions
|
|
@ -218,6 +218,7 @@ func (s *Server) Init(req *initproto.InitRequest, stream initproto.API_InitServe
|
|||
req.ConformanceMode,
|
||||
components.NewComponentsFromInitProto(req.KubernetesComponents),
|
||||
req.ApiserverCertSans,
|
||||
req.ServiceCidr,
|
||||
s.log,
|
||||
)
|
||||
if err != nil {
|
||||
|
|
@ -340,6 +341,7 @@ type ClusterInitializer interface {
|
|||
conformanceMode bool,
|
||||
kubernetesComponents components.Components,
|
||||
apiServerCertSANs []string,
|
||||
serviceCIDR string,
|
||||
log *logger.Logger,
|
||||
) ([]byte, error)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue