Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Griffith <dyl.griffith@gmail.com>2018-02-20 05:49:35 +0300
committerDylan Griffith <dyl.griffith@gmail.com>2018-02-20 05:49:35 +0300
commit3d3d09fa9d0ea81f0e20037f64bd43b0cd1e5891 (patch)
tree37f859e6c9a857d7173a9a49aec6645fed89293e /app/models/clusters/concerns
parentba4114d25f538d198df2f681b9cb08567494207e (diff)
Schedule Ingress IP address fetch from K8s after clusters page load (#42643)
Diffstat (limited to 'app/models/clusters/concerns')
-rw-r--r--app/models/clusters/concerns/application_core.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/models/clusters/concerns/application_core.rb b/app/models/clusters/concerns/application_core.rb
index a98fa85a5ff..44b0fca3d01 100644
--- a/app/models/clusters/concerns/application_core.rb
+++ b/app/models/clusters/concerns/application_core.rb
@@ -23,6 +23,11 @@ module Clusters
def name
self.class.application_name
end
+
+ def sync_details
+ # Override if you need extra data synchronized
+ # from K8s after installation
+ end
end
end
end