Skip to content

Commit

Permalink
fix(provider/kubernetes): delete action broken for all but server gro…
Browse files Browse the repository at this point in the history
…ups (#4879)
  • Loading branch information
Scott Bloch-Wehba-Seaward authored and lwander committed Feb 20, 2018
1 parent 895fb3f commit f43dfea
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ class KubernetesInstanceDetailsController implements IController {
namespace: this.instance.namespace,
account: this.instance.account,
},
application: this.app
application: this.app,
manifestController: () => null,
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ class KubernetesLoadBalancerDetailsController implements IController {
namespace: this.loadBalancerFromParams.region,
account: this.loadBalancerFromParams.accountId,
},
application: this.app
application: this.app,
manifestController: () => null,
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ class KubernetesSecurityGroupDetailsController implements IController {
namespace: this.securityGroupFromParams.region,
account: this.securityGroupFromParams.accountId,
},
application: this.app
application: this.app,
manifestController: () => null,
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ class KubernetesServerGroupManagerDetailsController implements IController {
namespace: this.serverGroupManager.namespace,
account: this.serverGroupManager.account
},
application: this.app
application: this.app,
manifestController: () => null,
}
});
}
Expand Down

0 comments on commit f43dfea

Please sign in to comment.