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

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