Skip to content

Commit fcb1f71

Browse files
committed
this.k8 >this.K0005
Signed-off-by: Jeromy Cannon <jeromy@swirldslabs.com>
1 parent 7fc5d61 commit fcb1f71

9 files changed

+9
-9
lines changed

src/commands/base.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export abstract class BaseCommand extends ShellRunner {
4949
super();
5050

5151
this.helm = opts.helm;
52-
this.k8 = opts.k8;
52+
this.K0005 = opts.k8;
5353
this.chartManager = opts.chartManager;
5454
this.configManager = opts.configManager;
5555
this.depManager = opts.depManager;

src/commands/node/handlers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export class NodeCommandHandlers implements CommandHandlers {
7272
this.tasks = opts.tasks;
7373
this.accountManager = opts.accountManager;
7474
this.configManager = opts.configManager;
75-
this.k8 = opts.k8;
75+
this.K0005 = opts.k8;
7676
this.platformInstaller = opts.platformInstaller;
7777
this.leaseManager = opts.leaseManager;
7878
this.remoteConfigManager = opts.remoteConfigManager;

src/commands/node/tasks.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export class NodeCommandTasks {
112112
this.accountManager = opts.accountManager;
113113
this.configManager = opts.configManager;
114114
this.logger = opts.logger;
115-
this.k8 = opts.k8;
115+
this.K0005 = opts.k8;
116116

117117
this.platformInstaller = opts.platformInstaller;
118118
this.profileManager = opts.profileManager;

src/core/certificate_manager.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class CertificateManager {
2828
@inject(InjectTokens.SoloLogger) private readonly logger?: SoloLogger,
2929
@inject(InjectTokens.ConfigManager) private readonly configManager?: ConfigManager,
3030
) {
31-
this.k8 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
31+
this.K0005 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
3232
this.logger = patchInject(logger, InjectTokens.SoloLogger, this.constructor.name);
3333
this.configManager = patchInject(configManager, InjectTokens.ConfigManager, this.constructor.name);
3434
}

src/core/cluster_checks.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class ClusterChecks {
2222
@inject(InjectTokens.K0001) private readonly K002?: K0003,
2323
) {
2424
this.logger = patchInject(logger, InjectTokens.SoloLogger, this.constructor.name);
25-
this.k8 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
25+
this.K0005 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
2626
}
2727

2828
/**

src/core/config/remote/remote_config_manager.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class RemoteConfigManager {
4949
@inject(InjectTokens.LocalConfig) private readonly localConfig?: LocalConfig,
5050
@inject(InjectTokens.ConfigManager) private readonly configManager?: ConfigManager,
5151
) {
52-
this.k8 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
52+
this.K0005 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
5353
this.logger = patchInject(logger, InjectTokens.SoloLogger, this.constructor.name);
5454
this.localConfig = patchInject(localConfig, InjectTokens.LocalConfig, this.constructor.name);
5555
this.configManager = patchInject(configManager, InjectTokens.ConfigManager, this.constructor.name);

src/core/lease/lease_manager.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class LeaseManager {
3535
) {
3636
this._renewalService = patchInject(_renewalService, InjectTokens.LeaseRenewalService, this.constructor.name);
3737
this._logger = patchInject(_logger, InjectTokens.SoloLogger, this.constructor.name);
38-
this.k8 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
38+
this.K0005 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
3939
this.configManager = patchInject(configManager, InjectTokens.ConfigManager, this.constructor.name);
4040
}
4141

src/core/network_nodes.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class NetworkNodes {
2828
@inject(InjectTokens.K0001) private readonly K002?: K0003,
2929
) {
3030
this.logger = patchInject(logger, InjectTokens.SoloLogger, this.constructor.name);
31-
this.k8 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
31+
this.K0005 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
3232
}
3333

3434
/**

src/core/platform_installer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class PlatformInstaller {
3434
@inject(InjectTokens.ConfigManager) private configManager?: ConfigManager,
3535
) {
3636
this.logger = patchInject(logger, InjectTokens.SoloLogger, this.constructor.name);
37-
this.k8 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
37+
this.K0005 = patchInject(K0004, InjectTokens.K0001, this.constructor.name);
3838
this.configManager = patchInject(configManager, InjectTokens.ConfigManager, this.constructor.name);
3939
}
4040

0 commit comments

Comments
 (0)