summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/clusters/show/index.js
blob: d20e2c195831b5806abd976e62b5ee01da4ad93a (plain)
1
2
3
4
5
6
7
8
9
import ClustersBundle from '~/clusters/clusters_bundle';
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();
});