generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
91 lines (90 loc) • 5.71 kB
JavaScript
import { applicationTypes, authenticationTypes, kubernetesPlatformTypes, monitoringTypes, searchEngineTypes, serviceDiscoveryTypes, } from '../../lib/jhipster/index.js';
const { ELASTICSEARCH } = searchEngineTypes;
const { GATEWAY, MONOLITH } = applicationTypes;
const { JWT } = authenticationTypes;
const { PROMETHEUS } = monitoringTypes;
const { CONSUL, EUREKA } = serviceDiscoveryTypes;
const { ServiceTypes } = kubernetesPlatformTypes;
const { INGRESS } = ServiceTypes;
export default {
writeFiles,
};
export function writeFiles() {
const suffix = 'helm';
return {
writeAppChart() {
const kubernetesSubgenPath = this.fetchFromInstalledJHipster('kubernetes/templates');
if (this.kubernetesNamespace !== 'default') {
this.writeFile(`${kubernetesSubgenPath}/namespace.yml.ejs`, 'namespace.yml');
}
for (let i = 0; i < this.appConfigs.length; i++) {
const appName = this.appConfigs[i].baseName.toLowerCase();
const appOut = appName.concat('-', suffix);
this.app = this.appConfigs[i];
this.writeFile(`${kubernetesSubgenPath}/deployment.yml.ejs`, `${appOut}/templates/${appName}-deployment.yml`);
this.writeFile(`${kubernetesSubgenPath}/service.yml.ejs`, `${appOut}/templates/${appName}-service.yml`);
this.writeFile('app/values.yml.ejs', `${appOut}/values.yaml`);
this.writeFile('app/Chart.yml.ejs', `${appOut}/Chart.yaml`);
this.writeFile('app/requirements.yml.ejs', `${appOut}/requirements.yaml`);
this.writeFile('app/helpers.tpl.ejs', `${appOut}/templates/_helpers.tpl`);
if (this.app.searchEngine === ELASTICSEARCH) {
this.writeFile(`${kubernetesSubgenPath}/db/elasticsearch.yml.ejs`, `${appOut}/templates/${appName}-elasticsearch.yml`);
}
if (this.app.applicationType === GATEWAY || this.app.applicationType === MONOLITH) {
if (this.istio) {
this.writeFile(`${kubernetesSubgenPath}/istio/gateway.yml.ejs`, `${appOut}/templates/${appName}-gateway.yml`);
}
else if (this.kubernetesServiceType === INGRESS) {
this.writeFile(`${kubernetesSubgenPath}/ingress.yml.ejs`, `${appOut}/templates/${appName}-ingress.yml`);
}
}
if (!this.app.serviceDiscoveryAny && this.app.authenticationType === JWT) {
this.writeFile(`${kubernetesSubgenPath}/secret/jwt-secret.yml.ejs`, `${appOut}/templates/jwt-secret.yml`);
}
if (this.app.databaseTypeCouchbase) {
this.writeFile(`${kubernetesSubgenPath}/secret/couchbase-secret.yml.ejs`, `${appOut}/templates/couchbase-secret.yml`);
}
if (this.istio) {
this.writeFile(`${kubernetesSubgenPath}/istio/destination-rule.yml.ejs`, `${appOut}/templates/${appName}-destination-rule.yml`);
this.writeFile(`${kubernetesSubgenPath}/istio/virtual-service.yml.ejs`, `${appOut}/templates/${appName}-virtual-service.yml`);
}
}
},
writeCommonServiceChart() {
const k8s = this.fetchFromInstalledJHipster('kubernetes/templates');
const csOut = 'csvc'.concat('-', suffix);
if (this.useKafka || this.monitoring === PROMETHEUS || this.serviceDiscoveryType === EUREKA || this.serviceDiscoveryType === CONSUL) {
this.writeFile('csvc/values.yml.ejs', `${csOut}/values.yaml`);
this.writeFile('csvc/Chart.yml.ejs', `${csOut}/Chart.yaml`);
this.writeFile('csvc/requirements.yml.ejs', `${csOut}/requirements.yaml`);
this.writeFile('csvc/helpers.tpl.ejs', `${csOut}/templates/_helpers.tpl`);
}
if (this.monitoring === PROMETHEUS) {
if (this.istio && this.kubernetesServiceType === INGRESS) {
this.writeFile(`${k8s}/istio/gateway/jhipster-grafana-gateway.yml.ejs`, `${csOut}/templates/jhipster-grafana-gateway.yml`);
}
}
if (this.serviceDiscoveryType === EUREKA) {
this.writeFile(`${k8s}/registry/jhipster-registry.yml.ejs`, `${csOut}/templates/jhipster-registry.yml`);
this.writeFile(`${k8s}/registry/application-configmap.yml.ejs`, `${csOut}/templates/application-configmap.yml`);
}
if (this.serviceDiscoveryType === CONSUL) {
this.writeFile(`${k8s}/registry/consul.yml.ejs`, `${csOut}/templates/consul.yml`);
this.writeFile(`${k8s}/registry/consul-config-loader.yml.ejs`, `${csOut}/templates/consul-config-loader.yml`);
this.writeFile(`${k8s}/registry/application-configmap.yml.ejs`, `${csOut}/templates/application-configmap.yml`);
}
if (this.istio) {
this.writeFile(`${k8s}/istio/gateway/grafana-gateway.yml.ejs`, `${csOut}/templates/grafana-gateway.yml`);
this.writeFile(`${k8s}/istio/gateway/zipkin-gateway.yml.ejs`, `${csOut}/templates/zipkin-gateway.yml`);
this.writeFile(`${k8s}/istio/gateway/kiali-gateway.yml.ejs`, `${csOut}/templates/kiali-gateway.yml`);
}
},
writeReadme() {
this.writeFile('README-KUBERNETES-HELM.md.ejs', 'HELM-README.md');
},
writeConfigRunFile() {
this.writeFile('helm-apply.sh.ejs', 'helm-apply.sh');
this.writeFile('helm-upgrade.sh.ejs', 'helm-upgrade.sh');
},
};
}