support optional envvars for pod-infra-container

This commit is contained in:
James DeFelice
2016-02-05 15:47:06 +00:00
parent c78f3a68fd
commit 1aec798aa0
4 changed files with 31 additions and 1 deletions

View File

@@ -464,3 +464,7 @@ func ParsePodFullName(podFullName string) (string, string, error) {
}
return parts[0], parts[1], nil
}
// Option is a functional option type for Runtime, useful for
// completely optional settings.
type Option func(Runtime)