Fixes broken config path for functions (#1177)

This commit is contained in:
Vishal
2019-05-09 13:12:52 +05:30
committed by GitHub
parent f8dfc75872
commit 69de5e03d3
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ func MakeFetcherConfig(sharedMountPath string) (*Config, error) {
fetcherImagePullPolicy: fission.GetImagePullPolicy(fetcherImagePullPolicy),
sharedMountPath: sharedMountPath,
sharedSecretPath: "/secrets",
sharedCfgMapPath: "/configmaps",
sharedCfgMapPath: "/configs",
jaegerCollectorEndpoint: os.Getenv("OPENCENSUS_TRACE_JAEGER_COLLECTOR_ENDPOINT"),
serviceAccount: fission.FissionFetcherSA,
}, nil
+1 -1
View File
@@ -597,7 +597,7 @@ func (fetcher *Fetcher) SpecializePod(ctx context.Context, fetchReq fission.Func
_, err = fetcher.FetchSecretsAndCfgMaps(fetchReq.Secrets, fetchReq.ConfigMaps)
if err != nil {
return errors.Wrap(err, "error fetching secrets/configmaps")
return errors.Wrap(err, "error fetching secrets/configs")
}
// Specialize the pod