k3s/test/e2e/service_accounts.go

94 lines
3.0 KiB
Go
Raw Normal View History

2015-05-06 20:05:00 +00:00
/*
Copyright 2014 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.
*/
package e2e
import (
"fmt"
"time"
2015-08-05 22:03:47 +00:00
"k8s.io/kubernetes/pkg/api"
2015-08-13 19:01:50 +00:00
client "k8s.io/kubernetes/pkg/client/unversioned"
2015-08-05 22:03:47 +00:00
"k8s.io/kubernetes/pkg/fields"
"k8s.io/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/util/wait"
"k8s.io/kubernetes/plugin/pkg/admission/serviceaccount"
2015-05-06 20:05:00 +00:00
. "github.com/onsi/ginkgo"
)
2015-12-20 19:13:38 +00:00
// Flaky issue #19024
var _ = Describe("ServiceAccounts [Flaky]", func() {
2015-05-22 20:21:42 +00:00
f := NewFramework("svcaccounts")
2015-05-06 20:05:00 +00:00
It("should mount an API token into pods [Conformance]", func() {
2015-05-06 20:05:00 +00:00
var tokenContent string
var rootCAContent string
2015-05-06 20:05:00 +00:00
// Standard get, update retry loop
expectNoError(wait.Poll(time.Millisecond*500, time.Second*10, func() (bool, error) {
By("getting the auto-created API token")
tokenSelector := fields.SelectorFromSet(map[string]string{client.SecretType: string(api.SecretTypeServiceAccountToken)})
options := api.ListOptions{FieldSelector: tokenSelector}
2015-12-02 11:12:57 +00:00
secrets, err := f.Client.Secrets(f.Namespace.Name).List(options)
2015-05-06 20:05:00 +00:00
if err != nil {
return false, err
}
if len(secrets.Items) == 0 {
return false, nil
}
if len(secrets.Items) > 1 {
return false, fmt.Errorf("Expected 1 token secret, got %d", len(secrets.Items))
}
tokenContent = string(secrets.Items[0].Data[api.ServiceAccountTokenKey])
rootCAContent = string(secrets.Items[0].Data[api.ServiceAccountRootCAKey])
2015-05-06 20:05:00 +00:00
return true, nil
}))
pod := &api.Pod{
ObjectMeta: api.ObjectMeta{
Name: "pod-service-account-" + string(util.NewUUID()),
},
Spec: api.PodSpec{
Containers: []api.Container{
{
Name: "token-test",
Image: "gcr.io/google_containers/mounttest:0.2",
2015-05-06 20:05:00 +00:00
Args: []string{
fmt.Sprintf("--file_content=%s/%s", serviceaccount.DefaultAPITokenMountPath, api.ServiceAccountTokenKey),
},
},
{
Name: "root-ca-test",
Image: "gcr.io/google_containers/mounttest:0.2",
Args: []string{
fmt.Sprintf("--file_content=%s/%s", serviceaccount.DefaultAPITokenMountPath, api.ServiceAccountRootCAKey),
},
},
2015-05-06 20:05:00 +00:00
},
RestartPolicy: api.RestartPolicyNever,
},
}
f.TestContainerOutput("consume service account token", pod, 0, []string{
2015-05-06 20:05:00 +00:00
fmt.Sprintf(`content of file "%s/%s": %s`, serviceaccount.DefaultAPITokenMountPath, api.ServiceAccountTokenKey, tokenContent),
2015-05-22 20:21:42 +00:00
})
f.TestContainerOutput("consume service account root CA", pod, 1, []string{
fmt.Sprintf(`content of file "%s/%s": %s`, serviceaccount.DefaultAPITokenMountPath, api.ServiceAccountRootCAKey, rootCAContent),
})
2015-05-06 20:05:00 +00:00
})
})