Skip to content

Commit ae45773

Browse files
committed
revert meaning
Signed-off-by: Jeffrey Tang <[email protected]>
1 parent cecdec9 commit ae45773

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/commands/network.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,9 @@ export class NetworkCommand extends BaseCommand {
203203
true,
204204
);
205205
if (!isCloudSecretCreated) {
206-
throw new SoloError(`failed to create Kubernetes secret for storage credentials of type '${config.storageType}'`);
206+
throw new SoloError(
207+
`failed to create Kubernetes secret for storage credentials of type '${config.storageType}'`,
208+
);
207209
}
208210
} catch (e: Error | any) {
209211
const errorMessage = 'failed to create Kubernetes storage secret ';
@@ -270,7 +272,7 @@ export class NetworkCommand extends BaseCommand {
270272
}
271273

272274
if (config.storageType !== constants.StorageType.MINIO_ONLY) {
273-
valuesArg += ' --set cloud.generateNewSecrets=true';
275+
valuesArg += ' --set cloud.generateNewSecrets=false';
274276
}
275277

276278
if (config.storageBucket) {

0 commit comments

Comments
 (0)