debian-mirror-gitlab/app/assets/javascripts/pages/projects/clusters/show/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
352 B
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
import ClustersBundle from '~/clusters/clusters_bundle';
2021-03-11 19:13:27 +05:30
import initIntegrationForm from '~/clusters/forms/show';
2019-12-26 22:10:19 +05:30
import initGkeNamespace from '~/create_cluster/gke_cluster_namespace';
2020-07-28 23:09:34 +05:30
import initClusterHealth from './cluster_health';
2018-03-17 18:26:18 +05:30
2021-09-30 23:02:18 +05:30
new ClustersBundle(); // eslint-disable-line no-new
initGkeNamespace();
initClusterHealth();
initIntegrationForm();