Skip to content

Commit 40a6a41

Browse files
Release Atlas Operator 2.7.0 (#373)
* Pushing charts/atlas-operator-crds/Chart.yaml using GitHub API * Pushing charts/atlas-operator/Chart.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasbackupcompliancepolicies.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasprojects.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasprivateendpoints.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlascustomroles.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasstreaminstances.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/_helpers.tpl using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasdatabaseusers.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlassearchindexconfigs.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasstreamconnections.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasteams.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasdeployments.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/NOTES.txt using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasdatafederations.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasipaccesslists.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasbackupschedules.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasfederatedauths.yaml using GitHub API * Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasbackuppolicies.yaml using GitHub API --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 335bdf6 commit 40a6a41

File tree

4 files changed

+76
-7
lines changed

4 files changed

+76
-7
lines changed

charts/atlas-operator-crds/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: mongodb-atlas-operator-crds
33
description: MongoDB Atlas Operator CRDs - Helm chart for installing and upgrading Custom Resource Definitions (CRDs) for the Atlas Operator.
44
type: application
5-
version: 2.6.1
6-
appVersion: 2.6.1
5+
version: 2.7.0
6+
appVersion: 2.7.0
77
kubeVersion: ">=1.15.0-0"
88
keywords:
99
- mongodb

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

Lines changed: 70 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,6 +632,73 @@ spec:
632632
required:
633633
- id
634634
type: object
635+
flexSpec:
636+
description: Configuration for the Flex cluster API. https://www.mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Flex-Clusters
637+
properties:
638+
name:
639+
description: Human-readable label that identifies the instance.
640+
type: string
641+
providerSettings:
642+
description: Group of cloud provider settings that configure the
643+
provisioned MongoDB flex cluster.
644+
properties:
645+
backingProviderName:
646+
description: Cloud service provider on which MongoDB Atlas
647+
provisions the flex cluster.
648+
enum:
649+
- AWS
650+
- GCP
651+
- AZURE
652+
type: string
653+
x-kubernetes-validations:
654+
- message: Backing Provider cannot be modified after cluster
655+
creation
656+
rule: self == oldSelf
657+
regionName:
658+
description: |-
659+
Human-readable label that identifies the geographic location of your MongoDB flex cluster.
660+
The region you choose can affect network latency for clients accessing your databases.
661+
type: string
662+
x-kubernetes-validations:
663+
- message: Region Name cannot be modified after cluster creation
664+
rule: self == oldSelf
665+
required:
666+
- backingProviderName
667+
- regionName
668+
type: object
669+
tags:
670+
description: List that contains key-value pairs between 1 to 255
671+
characters in length for tagging and categorizing the instance.
672+
items:
673+
description: TagSpec holds a key-value pair for resource tagging
674+
on this deployment.
675+
properties:
676+
key:
677+
maxLength: 255
678+
minLength: 1
679+
pattern: ^[a-zA-Z0-9][a-zA-Z0-9 @_.+`;`-]*$
680+
type: string
681+
value:
682+
maxLength: 255
683+
minLength: 1
684+
pattern: ^[a-zA-Z0-9][a-zA-Z0-9@_.+`;`-]*$
685+
type: string
686+
required:
687+
- key
688+
- value
689+
type: object
690+
maxItems: 50
691+
type: array
692+
terminationProtectionEnabled:
693+
default: false
694+
description: |-
695+
Flag that indicates whether termination protection is enabled on the cluster.
696+
If set to true, MongoDB Cloud won't delete the cluster. If set to false, MongoDB Cloud will delete the cluster.
697+
type: boolean
698+
required:
699+
- name
700+
- providerSettings
701+
type: object
635702
processArgs:
636703
description: ProcessArgs allows to modify Advanced Configuration Options
637704
properties:
@@ -674,7 +741,9 @@ spec:
674741
- name
675742
type: object
676743
serverlessSpec:
677-
description: Configuration for the serverless deployment API. https://www.mongodb.com/docs/atlas/reference/api/serverless-instances/
744+
description: |-
745+
Configuration for the serverless deployment API. https://www.mongodb.com/docs/atlas/reference/api/serverless-instances/
746+
DEPRECATED FIELD: Serverless instances are deprecated. See https://dochub.mongodb.org/core/atlas-flex-migration for details.
678747
properties:
679748
backupOptions:
680749
description: Serverless Backup Options

charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasipaccesslists.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
listKind: AtlasIPAccessListList
1919
plural: atlasipaccesslists
2020
shortNames:
21-
- aial
21+
- aip
2222
singular: atlasipaccesslist
2323
scope: Namespaced
2424
versions:

charts/atlas-operator/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: mongodb-atlas-operator
33
description: |-
44
MongoDB Atlas Operator - a Helm chart for installing and upgrading Atlas Operator: the official Kubernetes operator allowing to manage MongoDB Atlas resources from Kubernetes
55
type: application
6-
version: 2.6.1
7-
appVersion: 2.6.1
6+
version: 2.7.0
7+
appVersion: 2.7.0
88
kubeVersion: ">=1.15.0-0"
99
keywords:
1010
- mongodb
@@ -19,6 +19,6 @@ maintainers:
1919
2020
dependencies:
2121
- name: mongodb-atlas-operator-crds
22-
version: "2.6.1"
22+
version: "2.7.0"
2323
repository: "https://mongodb.github.io/helm-charts"
2424
condition: mongodb-atlas-operator-crds.enabled

0 commit comments

Comments
 (0)