Skip to content

Commit

Permalink
Fix non Helm installers (#544)
Browse files Browse the repository at this point in the history
Signed-off-by: Mykola Morhun <[email protected]>
  • Loading branch information
mmorhun authored Feb 27, 2020
1 parent 035a924 commit 065ae1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/server/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export default class Start extends Command {
ctx.listrOptions = listrOptions

// TODO when tls by default is implemented for all platforms, make `tls` flag turned on by default.
if (flags.platform === 'k8s' || flags.platform === 'minikube' || flags.platform === 'microk8s') {
if (flags.installer === 'helm' && (flags.platform === 'k8s' || flags.platform === 'minikube' || flags.platform === 'microk8s')) {
flags.tls = true
}

Expand Down

0 comments on commit 065ae1d

Please sign in to comment.