2015-02-20 22:01:15 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
2015-02-20 22:01:15 +00:00
|
|
|
|
|
|
|
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 e2e
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os/exec"
|
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("MasterCerts", func() {
|
|
|
|
BeforeEach(func() {
|
|
|
|
var err error
|
2015-03-25 12:49:34 +00:00
|
|
|
_, err = loadClient()
|
2015-02-20 22:01:15 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-06-22 21:14:54 +00:00
|
|
|
|
|
|
|
SkipUnlessProviderIs("gce", "gke")
|
2015-02-20 22:01:15 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should have all expected certs on the master", func() {
|
|
|
|
for _, certFile := range []string{"kubecfg.key", "kubecfg.crt", "ca.crt"} {
|
2015-04-02 14:26:21 +00:00
|
|
|
cmd := exec.Command("gcloud", "compute", "ssh", "--project", testContext.CloudConfig.ProjectID,
|
|
|
|
"--zone", testContext.CloudConfig.Zone, testContext.CloudConfig.MasterName,
|
2015-02-20 22:01:15 +00:00
|
|
|
"--command", fmt.Sprintf("ls /srv/kubernetes/%s", certFile))
|
2015-04-23 16:38:09 +00:00
|
|
|
if output, err := cmd.CombinedOutput(); err != nil {
|
|
|
|
Failf("Error checking for cert file %s on master: %v\n%s", certFile, err, string(output))
|
2015-02-20 22:01:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|