diff options
| author | Alessio Caiazza <acaiazza@gitlab.com> | 2017-11-07 15:26:14 +0100 |
|---|---|---|
| committer | Alessio Caiazza <acaiazza@gitlab.com> | 2017-11-07 17:12:41 +0100 |
| commit | 8ec618a6ede619d9f75279f03c03b24d106c79c7 (patch) | |
| tree | 7fe8501fb56edf3f33febe5c0d39019160715293 /app/models/clusters | |
| parent | 760a154a032319a90e15dcf4d54ec1c1cdde9e1c (diff) | |
| download | gitlab-ce-8ec618a6ede619d9f75279f03c03b24d106c79c7.tar.gz | |
Add Helm InstallCommand
Diffstat (limited to 'app/models/clusters')
| -rw-r--r-- | app/models/clusters/applications/helm.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/clusters/applications/helm.rb b/app/models/clusters/applications/helm.rb index 7ea84841118..c7949d11ef8 100644 --- a/app/models/clusters/applications/helm.rb +++ b/app/models/clusters/applications/helm.rb @@ -26,6 +26,10 @@ module Clusters def name self.class.application_name end + + def install_command + Gitlab::Kubernetes::Helm::InstallCommand.new(name, true) + end end end end |
