UNPKG

generator-jhipster

Version:

Spring Boot + Angular/React/Vue in one handy generator

214 lines (196 loc) 7.77 kB
/** * Copyright 2013-2021 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* eslint-disable consistent-return */ const chalk = require('chalk'); const fs = require('fs'); const prompts = require('./prompts'); const { writeFiles } = require('./files'); const BaseDockerGenerator = require('../generator-base-docker'); const { KAFKA } = require('../../jdl/jhipster/message-broker-types'); const { GENERATOR_KUBERNETES } = require('../generator-list'); const { MAVEN } = require('../../jdl/jhipster/build-tool-types'); const { checkImages, generateJwtSecret, configureImageNames, setAppsFolderPaths } = require('../docker-base'); const { checkKubernetes, loadConfig, saveConfig, setupKubernetesConstants, derivedKubernetesPlatformProperties, } = require('../kubernetes-base'); const statistics = require('../statistics'); let useBlueprints; module.exports = class extends BaseDockerGenerator { constructor(args, options, features) { super(args, options, features); useBlueprints = !this.fromBlueprint && this.instantiateBlueprints(GENERATOR_KUBERNETES); } _initializing() { return { sayHello() { this.log(chalk.white(`${chalk.bold('⎈')} Welcome to the JHipster Kubernetes Generator ${chalk.bold('⎈')}`)); this.log(chalk.white(`Files will be generated in folder: ${chalk.yellow(this.destinationRoot())}`)); }, ...super._initializing(), checkKubernetes, loadConfig, setupKubernetesConstants, }; } get initializing() { if (useBlueprints) return; return this._initializing(); } _prompting() { return { askForApplicationType: prompts.askForApplicationType, askForPath: prompts.askForPath, askForApps: prompts.askForApps, askForMonitoring: prompts.askForMonitoring, askForClustersMode: prompts.askForClustersMode, askForServiceDiscovery: prompts.askForServiceDiscovery, askForAdminPassword: prompts.askForAdminPassword, askForKubernetesNamespace: prompts.askForKubernetesNamespace, askForDockerRepositoryName: prompts.askForDockerRepositoryName, askForDockerPushCommand: prompts.askForDockerPushCommand, askForIstioSupport: prompts.askForIstioSupport, askForKubernetesServiceType: prompts.askForKubernetesServiceType, askForIngressType: prompts.askForIngressType, askForIngressDomain: prompts.askForIngressDomain, askForPersistentStorage: prompts.askForPersistentStorage, askForStorageClassName: prompts.askForStorageClassName, }; } get prompting() { if (useBlueprints) return; return this._prompting(); } _configuring() { return { insight() { statistics.sendSubGenEvent('generator', GENERATOR_KUBERNETES); }, checkImages, generateJwtSecret, configureImageNames, setAppsFolderPaths, setPostPromptProp() { this.appConfigs.forEach(element => { element.clusteredDb ? (element.dbPeerCount = 3) : (element.dbPeerCount = 1); if (element.messageBroker === KAFKA) { this.useKafka = true; } }); }, saveConfig, }; } get configuring() { if (useBlueprints) return; return this._configuring(); } _loading() { return { loadSharedConfig() { this.appConfigs.forEach(element => { this.loadServerConfig(element, element); this.loadDerivedAppConfig(element); }); this.loadDeploymentConfig(this); derivedKubernetesPlatformProperties(this); }, }; } get loading() { if (useBlueprints) return; return this._loading(); } _writing() { return writeFiles(); } get writing() { if (useBlueprints) return; return this._writing(); } _end() { return { deploy() { if (this.hasWarning) { this.log(`\n${chalk.yellow.bold('WARNING!')} Kubernetes configuration generated, but no Jib cache found`); this.log('If you forgot to generate the Docker image for this application, please run:'); this.log(this.warningMessage); } else { this.log(`\n${chalk.bold.green('Kubernetes configuration successfully generated!')}`); } this.log( `\n${chalk.yellow.bold( 'WARNING!' )} You will need to push your image to a registry. If you have not done so, use the following commands to tag and push the images:` ); for (let i = 0; i < this.appsFolders.length; i++) { const originalImageName = this.appConfigs[i].baseName.toLowerCase(); const targetImageName = this.appConfigs[i].targetImageName; if (originalImageName !== targetImageName) { this.log(` ${chalk.cyan(`docker image tag ${originalImageName} ${targetImageName}`)}`); } this.log(` ${chalk.cyan(`${this.dockerPushCommand} ${targetImageName}`)}`); } if (this.dockerRepositoryName) { this.log(`\n${chalk.green.bold('INFO!')} Alternatively, you can use Jib to build and push image directly to a remote registry:`); this.appsFolders.forEach((appsFolder, index) => { const appConfig = this.appConfigs[index]; let runCommand = ''; if (appConfig.buildTool === MAVEN) { runCommand = `./mvnw -ntp -Pprod verify jib:build -Djib.to.image=${appConfig.targetImageName}`; } else { runCommand = `./gradlew bootJar -Pprod jib -Djib.to.image=${appConfig.targetImageName}`; } this.log(` ${chalk.cyan(`${runCommand}`)} in ${this.destinationPath(this.directoryPath + appsFolder)}`); }); } this.log('\nYou can deploy all your apps by running the following kubectl command:'); this.log(` ${chalk.cyan('bash kubectl-apply.sh -f')}`); this.log('\n[OR]'); this.log('\nIf you want to use kustomize configuration, then run the following command:'); this.log(` ${chalk.cyan('bash kubectl-apply.sh -k')}`); if (this.gatewayNb + this.monolithicNb >= 1) { const namespaceSuffix = this.kubernetesNamespace === 'default' ? '' : ` -n ${this.kubernetesNamespace}`; this.log("\nUse these commands to find your application's IP addresses:"); for (let i = 0; i < this.appsFolders.length; i++) { if (this.appConfigs[i].applicationType === 'gateway' || this.appConfigs[i].applicationType === 'monolith') { this.log(` ${chalk.cyan(`kubectl get svc ${this.appConfigs[i].baseName.toLowerCase()}${namespaceSuffix}`)}`); } } this.log(); } // Make the apply script executable try { fs.chmodSync('kubectl-apply.sh', '755'); } catch (err) { this.log( `${chalk.yellow.bold('WARNING!')}Failed to make 'kubectl-apply.sh' executable, you may need to run 'chmod +x kubectl-apply.sh'` ); } }, }; } get end() { if (useBlueprints) return; return this._end(); } };