summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/clusters/show/index.js
blob: 1d019285e230074c7fd28bb95589848e01028802 (plain)
1
2
3
4
5
6
7
8
9
10
11
import ClustersBundle from '~/clusters/clusters_bundle';
import initIntegrationForm from '~/clusters/forms/show';
import initGkeNamespace from '~/create_cluster/gke_cluster_namespace';
import initClusterHealth from './cluster_health';

document.addEventListener('DOMContentLoaded', () => {
  new ClustersBundle(); // eslint-disable-line no-new
  initGkeNamespace();
  initClusterHealth();
  initIntegrationForm();
});