Skip to content

Commit 8435ec1

Browse files
authored
CLOUDP-349128: Update helm charts (#2759)
* update helm charts * make api docs
1 parent 1b04294 commit 8435ec1

File tree

4 files changed

+32
-16
lines changed

4 files changed

+32
-16
lines changed

docs/api-docs.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3521,13 +3521,6 @@ Collection of settings that configure how a deployment might scale its deploymen
35213521
Minimum instance size to which your deployment can automatically scale (such as M10). Atlas requires this parameter if "autoScaling.compute.scaleDownEnabled" : true.<br/>
35223522
</td>
35233523
<td>false</td>
3524-
</tr><tr>
3525-
<td><b>predictiveEnabled</b></td>
3526-
<td>boolean</td>
3527-
<td>
3528-
Flag that indicates whether predictive instance size auto-scaling is enabled.<br/>
3529-
</td>
3530-
<td>false</td>
35313524
</tr><tr>
35323525
<td><b>scaleDownEnabled</b></td>
35333526
<td>boolean</td>
@@ -4547,13 +4540,6 @@ Collection of settings that configure how a deployment might scale its deploymen
45474540
Minimum instance size to which your deployment can automatically scale (such as M10). Atlas requires this parameter if "autoScaling.compute.scaleDownEnabled" : true.<br/>
45484541
</td>
45494542
<td>false</td>
4550-
</tr><tr>
4551-
<td><b>predictiveEnabled</b></td>
4552-
<td>boolean</td>
4553-
<td>
4554-
Flag that indicates whether predictive instance size auto-scaling is enabled.<br/>
4555-
</td>
4556-
<td>false</td>
45574543
</tr><tr>
45584544
<td><b>scaleDownEnabled</b></td>
45594545
<td>boolean</td>

helm-charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasdeployments.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,13 @@ spec:
117117
- SHARDED
118118
- GEOSHARDED
119119
type: string
120+
configServerManagementMode:
121+
description: Config Server Management Mode for creating or updating
122+
a sharded cluster.
123+
enum:
124+
- ATLAS_MANAGED
125+
- FIXED_TO_DEDICATED
126+
type: string
120127
customZoneMapping:
121128
items:
122129
properties:
@@ -201,6 +208,9 @@ spec:
201208
Can only contain ASCII letters, numbers, and hyphens.
202209
pattern: ^[a-zA-Z0-9][a-zA-Z0-9-]*$
203210
type: string
211+
x-kubernetes-validations:
212+
- message: Name cannot be modified after deployment creation
213+
rule: self == oldSelf
204214
paused:
205215
description: Flag that indicates whether the deployment should
206216
be paused.
@@ -918,6 +928,12 @@ spec:
918928
- name
919929
- providerSettings
920930
type: object
931+
upgradeToDedicated:
932+
description: |2-
933+
upgradeToDedicated, when set to true, triggers the migration from a Flex to a
934+
Dedicated cluster. The user MUST provide the new dedicated cluster configuration.
935+
This flag is ignored if the cluster is already dedicated.
936+
type: boolean
921937
type: object
922938
x-kubernetes-validations:
923939
- message: must define only one project reference through externalProjectRef

helm-charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasprojects.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,15 @@ spec:
287287
type: object
288288
type: object
289289
type: array
290+
severityOverride:
291+
description: SeverityOverride optionally overrides the default
292+
severity level for an alert.
293+
enum:
294+
- INFO
295+
- WARNING
296+
- ERROR
297+
- CRITICAL
298+
type: string
290299
threshold:
291300
description: Threshold causes an alert to be triggered.
292301
properties:
@@ -750,6 +759,9 @@ spec:
750759
description: Name is the name of the Project that is created in Atlas
751760
by the Operator if it doesn't exist yet.
752761
type: string
762+
x-kubernetes-validations:
763+
- message: Name cannot be modified after project creation
764+
rule: self == oldSelf
753765
networkPeers:
754766
description: NetworkPeers is a list of Network Peers configured for
755767
the current Project.
@@ -1225,6 +1237,9 @@ spec:
12251237
description: When the alert was closed. Only present if the
12261238
status is CLOSED.
12271239
type: string
1240+
severityOverride:
1241+
description: Severity of the alert.
1242+
type: string
12281243
sourceTypeName:
12291244
description: For alerts of the type BACKUP, the type of server
12301245
being backed up.

helm-charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasthirdpartyintegrations.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
---
21
apiVersion: apiextensions.k8s.io/v1
32
kind: CustomResourceDefinition
43
metadata:
@@ -432,4 +431,4 @@ status:
432431
kind: ""
433432
plural: ""
434433
conditions: null
435-
storedVersions: null
434+
storedVersions: null

0 commit comments

Comments
 (0)