mirror of https://github.com/kubernetes/kops.git
Merge pull request #2219 from justinsb/add_127001_for_master
Add 127.0.0.1 to the IPs on the master apiserver
This commit is contained in:
commit
375c703606
|
@ -84,6 +84,9 @@ func (b *PKIModelBuilder) Build(c *fi.ModelBuilderContext) error {
|
|||
alternateNames = append(alternateNames, ip.String())
|
||||
}
|
||||
|
||||
// We also want to be able to reference it locally via https://127.0.0.1
|
||||
alternateNames = append(alternateNames, "127.0.0.1")
|
||||
|
||||
t := &fitasks.Keypair{
|
||||
Name: fi.String("master"),
|
||||
Subject: "cn=kubernetes-master",
|
||||
|
|
Loading…
Reference in New Issue