25 lines
643 B
JavaScript
25 lines
643 B
JavaScript
import axios from '../../lib/utils/axios_utils';
|
|
|
|
export default class ClusterService {
|
|
constructor(options = {}) {
|
|
this.options = options;
|
|
this.appInstallEndpointMap = {
|
|
helm: this.options.installHelmEndpoint,
|
|
ingress: this.options.installIngressEndpoint,
|
|
runner: this.options.installRunnerEndpoint,
|
|
prometheus: this.options.installPrometheusEndpoint,
|
|
};
|
|
}
|
|
|
|
fetchData() {
|
|
return axios.get(this.options.endpoint);
|
|
}
|
|
|
|
installApplication(appId) {
|
|
return axios.post(this.appInstallEndpointMap[appId]);
|
|
}
|
|
|
|
static updateCluster(endpoint, data) {
|
|
return axios.put(endpoint, data);
|
|
}
|
|
}
|