Skip to content

Commit

Permalink
Release Atlas Operator 2.1.0 (#307)
Browse files Browse the repository at this point in the history
* 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_atlasdatabaseusers.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_atlasdatafederations.yaml using GitHub API

* Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasdeployments.yaml using GitHub API

* Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasbackuppolicies.yaml using GitHub API

* Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasteams.yaml using GitHub API

* Pushing charts/atlas-operator-crds/templates/_helpers.tpl using GitHub API

* Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasprojects.yaml using GitHub API

* Pushing charts/atlas-operator-crds/templates/NOTES.txt using GitHub API

* Pushing charts/atlas-operator-crds/templates/atlas.mongodb.com_atlasbackupschedules.yaml using GitHub API

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Feb 16, 2024
1 parent 2fcc060 commit d843c29
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 13 deletions.
4 changes: 2 additions & 2 deletions charts/atlas-operator-crds/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: mongodb-atlas-operator-crds
description: MongoDB Atlas Operator CRDs - Helm chart for installing and upgrading Custom Resource Definitions (CRDs) for the Atlas Operator.
type: application
version: 2.0.1
appVersion: 2.0.1
version: 2.1.0
appVersion: 2.1.0
kubeVersion: ">=1.15.0-0"
keywords:
- mongodb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,17 @@ spec:
description: AtlasDatabaseUserSpec defines the desired state of Database
User in Atlas
properties:
awsIamType:
default: NONE
description: Human-readable label that indicates whether the new database
user authenticates with the Amazon Web Services (AWS) Identity and
Access Management (IAM) credentials associated with the user or
the user's role
enum:
- NONE
- USER
- ROLE
type: string
databaseName:
default: admin
description: DatabaseName is a Database against which Atlas authenticates
Expand Down Expand Up @@ -71,6 +82,15 @@ spec:
- value
type: object
type: array
oidcAuthType:
default: NONE
description: Human-readable label that indicates whether the new database
Username with OIDC federated authentication. To create a federated
authentication user, specify the value of IDP_GROUP for this field
enum:
- NONE
- IDP_GROUP
type: string
passwordSecretRef:
description: PasswordSecret is a reference to the Secret keeping the
user password.
Expand Down Expand Up @@ -149,7 +169,13 @@ spec:
type: object
type: array
username:
description: Username is a username for authenticating to MongoDB.
description: 'Username is a username for authenticating to MongoDB
Human-readable label that represents the user that authenticates
to MongoDB. The format of this label depends on the method of authentication:
In case of AWS IAM: the value should be AWS ARN for the IAM User/Role;
In case of OIDC: the value should be the Identity Provider ID; In
case of Plain text auth: the value can be anything'
maxLength: 1024
type: string
x509Type:
description: X509Type is X.509 method by which the database authenticates
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,13 @@ spec:
type: object
maxItems: 50
type: array
terminationProtectionEnabled:
default: false
description: Flag that indicates whether termination protection
is enabled on the cluster. If set to true, MongoDB Cloud won't
delete the cluster. If set to false, MongoDB Cloud will delete
the cluster.
type: boolean
versionReleaseSystem:
type: string
type: object
Expand Down Expand Up @@ -597,7 +604,10 @@ spec:
type: array
terminationProtectionEnabled:
default: false
description: TerminationProtectionEnabled flag
description: Flag that indicates whether termination protection
is enabled on the cluster. If set to true, MongoDB Cloud won't
delete the cluster. If set to false, MongoDB Cloud will delete
the cluster.
type: boolean
required:
- name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ spec:
types.
type: boolean
flowName:
description: Flowdock flow namse in lower-case letters.
description: Flowdock flow name in lower-case letters.
type: string
flowdockApiTokenRef:
description: The Flowdock personal API token. Populated
Expand Down Expand Up @@ -188,7 +188,7 @@ spec:
are sent. Populated for the SMS notifications type.
type: string
opsGenieApiKeyRef:
description: Opsgenie API Key. Populated for the OPS_GENIE
description: OpsGenie API Key. Populated for the OPS_GENIE
notifications type. If the key later becomes invalid,
Atlas sends an email to the project owner and eventually
removes the token.
Expand Down Expand Up @@ -308,9 +308,32 @@ spec:
type: boolean
type: object
cloudProviderAccessRoles:
description: CloudProviderAccessRoles is a list of Cloud Provider
Access Roles configured for the current Project.
description: 'CloudProviderAccessRoles is a list of Cloud Provider
Access Roles configured for the current Project. Deprecated: This
configuration was deprecated in favor of CloudProviderIntegrations'
items:
description: 'CloudProviderAccessRole define an integration to a
cloud provider Deprecated: This type is deprecated in favor of
CloudProviderIntegration'
properties:
iamAssumedRoleArn:
description: IamAssumedRoleArn is the ARN of the IAM role that
is assumed by the Atlas cluster.
type: string
providerName:
description: ProviderName is the name of the cloud provider.
Currently only AWS is supported.
type: string
required:
- providerName
type: object
type: array
cloudProviderIntegrations:
description: CloudProviderIntegrations is a list of Cloud Provider
Integration configured for the current Project.
items:
description: CloudProviderIntegration define an integration to a
cloud provider
properties:
iamAssumedRoleArn:
description: IamAssumedRoleArn is the ARN of the IAM role that
Expand Down Expand Up @@ -1213,8 +1236,8 @@ spec:
items:
type: string
type: array
cloudProviderAccessRoles:
description: CloudProviderAccessRoles contains a list of configured
cloudProviderIntegrations:
description: CloudProviderIntegrations contains a list of configured
cloud provider access roles. AWS support only
items:
properties:
Expand Down
6 changes: 3 additions & 3 deletions charts/atlas-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: mongodb-atlas-operator
description: |-
MongoDB Atlas Operator - a Helm chart for installing and upgrading Atlas Operator: the official Kubernetes operator allowing to manage MongoDB Atlas resources from Kubernetes
type: application
version: 2.0.1
appVersion: 2.0.1
version: 2.1.0
appVersion: 2.1.0
kubeVersion: ">=1.15.0-0"
keywords:
- mongodb
Expand All @@ -19,6 +19,6 @@ maintainers:
email: [email protected]
dependencies:
- name: mongodb-atlas-operator-crds
version: "2.0.1"
version: "2.1.0"
repository: "https://mongodb.github.io/helm-charts"
condition: mongodb-atlas-operator-crds.enabled

0 comments on commit d843c29

Please sign in to comment.