mirror of
https://github.com/biersoeckli/QuickStack.git
synced 2026-02-10 21:49:19 -06:00
fix: specify deployment version (canary/latest) in createOrUpdateDeployment method
This commit is contained in:
@@ -28,7 +28,7 @@ class QuickStackService {
|
||||
await namespaceService.createNamespaceIfNotExists(this.QUICKSTACK_NAMESPACE)
|
||||
const nextAuthSecret = await this.deleteExistingDeployment();
|
||||
await this.createOrUpdatePvc();
|
||||
await this.createOrUpdateDeployment(nextAuthSecret);
|
||||
await this.createOrUpdateDeployment(nextAuthSecret, process.env.VERSION_ARG?.includes('canary') ? 'canary' : 'latest');
|
||||
await this.createOrUpdateService(true);
|
||||
await this.waitUntilQuickstackIsRunning();
|
||||
console.log('QuickStack successfully initialized');
|
||||
|
||||
Reference in New Issue
Block a user