kubernetesk8s.io/kubernetes/plugin/pkg/admission/serviceaccount Index | Files

package serviceaccount

import "k8s.io/kubernetes/plugin/pkg/admission/serviceaccount"

serviceaccount enforces all pods having an associated serviceaccount, and all containers mounting the API token for that serviceaccount at a known location

Index

Constants

const DefaultAPITokenMountPath = "/var/run/secrets/kubernetes.io/serviceaccount"

DefaultAPITokenMountPath is the path that ServiceAccountToken secrets are automounted to. The token file would then be accessible at /var/run/secrets/kubernetes.io/serviceaccount

const DefaultServiceAccountName = "default"

DefaultServiceAccountName is the name of the default service account to set on pods which do not specify a service account

Functions

func NewServiceAccount

func NewServiceAccount(cl client.Interface) *serviceAccount

NewServiceAccount returns an admission.Interface implementation which limits admission of Pod CREATE requests based on the pod's ServiceAccount: 1. If the pod does not specify a ServiceAccount, it sets the pod's ServiceAccount to "default" 2. It ensures the ServiceAccount referenced by the pod exists 3. If LimitSecretReferences is true, it rejects the pod if the pod references Secret objects which the pod's ServiceAccount does not reference 4. If the pod does not contain any ImagePullSecrets, the ImagePullSecrets of the service account are added. 5. If MountServiceAccountToken is true, it adds a VolumeMount with the pod's ServiceAccount's api token secret to containers

Source Files

admission.go doc.go

Version
v1.1.4-beta.0
Published
Dec 7, 2015
Platform
linux/amd64
Imports
16 packages
Last checked
59 seconds ago

Tools for package owners.