func NewFileConfig()

in pkg/containercredentials/config.go [52:62]


func NewFileConfig(audience, mountPath, volumeName, tokenPath, fullUri string) *FileConfig {
	return &FileConfig{
		audience:             audience,
		mountPath:            mountPath,
		volumeName:           volumeName,
		tokenPath:            tokenPath,
		fullUri:              fullUri,
		identityConfigObject: nil,
		cache:                make(map[Identity]bool),
	}
}