-
Notifications
You must be signed in to change notification settings - Fork 40
windows bug fixes and app-proxy upgrade #579
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,102 @@ | ||
| /* eslint-disable max-len */ | ||
| const Command = require('../../Command'); | ||
| const upgradeRoot = require('../root/upgrade.cmd'); | ||
| const { | ||
| mergeWithValues, | ||
| selectNamespace, | ||
| } = require('./helper'); | ||
| const colors = require('colors'); | ||
| const { to } = require('../../../../logic/cli-config/errors/awaitTo'); | ||
| const { | ||
| createErrorHandler, | ||
| drawCodefreshFiglet, | ||
| upgradeAppProxy, | ||
| INSTALLATION_DEFAULTS, | ||
| } = require('../hybrid/helper'); | ||
| const { getKubeContext } = require('../../helpers/kubernetes'); | ||
|
|
||
| const openIssueMessage = `If you had any issues with the process please report them at: ${colors.blue('https://github.com/codefresh-io/cli/issues/new')}`; | ||
| const handleError = createErrorHandler(openIssueMessage); | ||
|
|
||
| const upgradeAppProxyHandler = new Command({ | ||
| root: false, | ||
| parent: upgradeRoot, | ||
| command: 'app-proxy', | ||
| description: 'Upgrades an existing App-Proxy', | ||
| webDocs: { | ||
| category: 'App-Proxy', | ||
| title: 'Upgrade', | ||
| weight: 100, | ||
| }, | ||
| builder: yargs => yargs | ||
| .env('CF_ARG_') // this means that every process.env.CF_ARG_* will be passed to argv | ||
| .option('kube-context-name', { | ||
| describe: 'Name of the kubernetes context on which the app-proxy is installed' | ||
| + ' (default: current context) [$CF_ARG_KUBE_CONTEXT_NAME]', | ||
| }) | ||
| .option('kube-namespace', { | ||
| describe: 'Name of the kubernetes namespace from which the App-Proxy and Runtime should be removed', | ||
| }) | ||
| .option('kube-config-path', { | ||
| describe: 'Path to kubeconfig file (default is $HOME/.kube/config)', | ||
| default: INSTALLATION_DEFAULTS.KUBECONFIG_PATH, | ||
| }) | ||
| .option('values', { | ||
| describe: 'specify values in a YAML file', | ||
| }) | ||
| .option('set-value', { | ||
| describe: 'Set values for templates, example: --set-value LocalVolumesDir=/mnt/disks/ssd0/codefresh-volumes', | ||
| type: 'array', | ||
| }) | ||
| .option('verbose', { | ||
| describe: 'Print logs', | ||
| }), | ||
| handler: async (_argv) => { | ||
| const argv = mergeWithValues(_argv); | ||
| const { | ||
| 'kube-config-path': kubeConfigPath, | ||
| verbose, | ||
| values, | ||
| 'set-value': setValues, | ||
| noExit, | ||
| } = argv; | ||
| let { | ||
| 'kube-namespace': kubeNamespace, | ||
| 'kube-context-name': kubeContextName, | ||
| } = argv; | ||
|
|
||
| console.log(colors.green('This installer will guide you through the App-Proxy upgrade process')); | ||
|
|
||
| if (!kubeContextName) { | ||
| kubeContextName = getKubeContext(kubeConfigPath); | ||
| } | ||
|
|
||
| if (!kubeNamespace) { | ||
| kubeNamespace = await selectNamespace(); | ||
| } | ||
|
|
||
| console.log(`\n${colors.green('Upgrade options summary:')} | ||
| 1. Kubernetes Context: ${colors.cyan(kubeContextName)} | ||
| 2. Kubernetes Namespace: ${colors.cyan(kubeNamespace)} | ||
| `); | ||
|
|
||
| const [upgradeErr] = await to(upgradeAppProxy({ | ||
| kubeConfigPath, | ||
| kubeContextName, | ||
| kubeNamespace, | ||
| verbose, | ||
| valuesFile: values, | ||
| setValue: setValues, | ||
| })); | ||
| handleError(upgradeErr, 'Failed to upgrade app-proxy'); | ||
|
|
||
| console.log('Successfully upgraded App-Proxy'); | ||
| console.log(openIssueMessage); | ||
| await drawCodefreshFiglet(); | ||
| if (!noExit) { | ||
| process.exit(); // TODO : This is not needed - needed to be fixed | ||
| } | ||
| }, | ||
| }); | ||
|
|
||
| module.exports = upgradeAppProxyHandler; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not portable :(