Skip to content

Commit 8523ab8

Browse files
committed
fix: solo should use a fixed FST chart version
Signed-off-by: Lenin Mehedy <[email protected]>
1 parent c43b244 commit 8523ab8

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/commands/flags.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
*/
1717
import { constants } from '../core/index.mjs'
1818
import * as core from '../core/index.mjs'
19+
import * as version from '../../version.mjs'
1920

2021
/**
2122
* Set flag from the flag option
@@ -328,7 +329,7 @@ export const fstChartVersion = {
328329
name: 'fst-chart-version',
329330
definition: {
330331
describe: 'Fullstack testing chart version',
331-
defaultValue: '',
332+
defaultValue: version.FST_CHART_VERSION,
332333
type: 'string'
333334
}
334335
}

version.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,10 @@
1414
* limitations under the License.
1515
*
1616
*/
17+
18+
/**
19+
* This file should only contain versions for dependencies
20+
*/
21+
1722
export const HELM_VERSION = 'v3.14.2'
23+
export const FST_CHART_VERSION = 'v0.22.0'

0 commit comments

Comments
 (0)