2018-03-17 18:26:18 +05:30
|
|
|
import ClustersBundle from '~/clusters/clusters_bundle';
|
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';
|
2020-10-24 23:57:45 +05:30
|
|
|
import initIntegrationForm from '~/clusters/forms/show';
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
2018-03-17 18:26:18 +05:30
|
|
|
new ClustersBundle(); // eslint-disable-line no-new
|
2019-10-12 21:52:04 +05:30
|
|
|
initGkeNamespace();
|
2020-07-28 23:09:34 +05:30
|
|
|
initClusterHealth();
|
2020-10-24 23:57:45 +05:30
|
|
|
initIntegrationForm();
|
2018-03-27 19:54:05 +05:30
|
|
|
});
|