We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0a4304 commit 1e577d1Copy full SHA for 1e577d1
src/otomi-stack.ts
@@ -530,6 +530,10 @@ export default class OtomiStack {
530
}, {})
531
updatedSettingsData.otomi.nodeSelector = nodeSelectorObject
532
}
533
+ // Update environment VERSIONS.core when otomi version changes
534
+ if (updatedSettingsData.otomi?.version && updatedSettingsData.otomi?.version !== env.VERSIONS.core) {
535
+ env.VERSIONS.core = updatedSettingsData.otomi.version
536
+ }
537
538
539
settings[settingId] = removeBlankAttributes(updatedSettingsData[settingId] as Record<string, any>)
0 commit comments