Merge pull request #5361 from woodcockjosh/patch-2

Fix addon config
pull/5369/head
Medya Ghazizadeh 2019-09-16 13:34:17 +02:00 committed by GitHub
commit f20e278664
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 6 deletions

View File

@ -43,19 +43,22 @@ To add a new addon to minikube the following steps are required:
"efk": NewAddon([]*BinAsset{
MustBinAsset(
"deploy/addons/efk/efk-configmap.yaml",
constants.AddonsPath,
constants.GuestAddonsDir,
"efk-configmap.yaml",
"0640"),
"0640",
false),
MustBinAsset(
"deploy/addons/efk/efk-rc.yaml",
constants.AddonsPath,
constants.GuestAddonsDir,
"efk-rc.yaml",
"0640"),
"0640",
false),
MustBinAsset(
"deploy/addons/efk/efk-svc.yaml",
constants.AddonsPath,
constants.GuestAddonsDir,
"efk-svc.yaml",
"0640"),
"0640",
false),
}, false, "efk"),
}
```