File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
cluster/pulumi/common/src Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 1+ // Copyright (c) 2024 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
2+ // SPDX-License-Identifier: Apache-2.0
13import { z } from 'zod' ;
24
35import { clusterSubConfig } from './config' ;
@@ -6,6 +8,7 @@ const HyperdiskSupportConfigSchema = z.object({
68 hyperdiskSupport : z
79 . object ( {
810 enabled : z . boolean ( ) . default ( false ) ,
11+ migrating : z . boolean ( ) . default ( false ) ,
912 } )
1013 . default ( { } ) ,
1114} ) ;
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2024 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
2+ // SPDX-License-Identifier: Apache-2.0
13import { hyperdiskSupportConfig } from '../config/hyperdiskSupportConfig' ;
24
35export const standardStorageClassName = hyperdiskSupportConfig . hyperdiskSupport . enabled
You can’t perform that action at this time.
0 commit comments