Skip to content

Commit

Permalink
Release 1.6.0 (#843)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jan 20, 2023
1 parent 657bf76 commit 526b893
Show file tree
Hide file tree
Showing 15 changed files with 1,276 additions and 83 deletions.
45 changes: 45 additions & 0 deletions bundle/manifests/atlas.mongodb.com_atlasbackuppolicies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,51 @@ spec:
- items
type: object
status:
properties:
backupScheduleIDs:
description: DeploymentID of the deployment using the backup policy
items:
type: string
type: array
conditions:
description: Conditions is the list of statuses showing the current
state of the Atlas Custom Resource
items:
description: Condition describes the state of an Atlas Custom Resource
at a certain point.
properties:
lastTransitionTime:
description: Last time the condition transitioned from one status
to another.
format: date-time
type: string
message:
description: A human readable message indicating details about
the transition.
type: string
reason:
description: The reason for the condition's last transition.
type: string
status:
description: Status of the condition, one of True, False, Unknown.
type: string
type:
description: Type of Atlas Custom Resource condition.
type: string
required:
- status
- type
type: object
type: array
observedGeneration:
description: ObservedGeneration indicates the generation of the resource
specification that the Atlas Operator is aware of. The Atlas Operator
updates this field to the 'metadata.generation' as soon as it starts
reconciliation of the resource.
format: int64
type: integer
required:
- conditions
type: object
type: object
served: true
Expand Down
44 changes: 44 additions & 0 deletions bundle/manifests/atlas.mongodb.com_atlasbackupschedules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,50 @@ spec:
- policy
type: object
status:
properties:
conditions:
description: Conditions is the list of statuses showing the current
state of the Atlas Custom Resource
items:
description: Condition describes the state of an Atlas Custom Resource
at a certain point.
properties:
lastTransitionTime:
description: Last time the condition transitioned from one status
to another.
format: date-time
type: string
message:
description: A human readable message indicating details about
the transition.
type: string
reason:
description: The reason for the condition's last transition.
type: string
status:
description: Status of the condition, one of True, False, Unknown.
type: string
type:
description: Type of Atlas Custom Resource condition.
type: string
required:
- status
- type
type: object
type: array
deploymentID:
items:
type: string
type: array
observedGeneration:
description: ObservedGeneration indicates the generation of the resource
specification that the Atlas Operator is aware of. The Atlas Operator
updates this field to the 'metadata.generation' as soon as it starts
reconciliation of the resource.
format: int64
type: integer
required:
- conditions
type: object
type: object
served: true
Expand Down
109 changes: 109 additions & 0 deletions bundle/manifests/atlas.mongodb.com_atlasdeployments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,18 @@ spec:
type: object
clusterType:
type: string
customZoneMapping:
items:
properties:
location:
type: string
zone:
type: string
required:
- location
- zone
type: object
type: array
diskSizeGB:
type: integer
encryptionAtRestProvider:
Expand All @@ -82,6 +94,30 @@ spec:
- value
type: object
type: array
managedNamespaces:
items:
description: ManagedNamespace represents the information about
managed namespace configuration.
properties:
collection:
type: string
customShardKey:
type: string
db:
type: string
isCustomShardKeyHashed:
type: boolean
isShardKeyUnique:
type: boolean
numInitialChunks:
type: integer
presplitHashedZones:
type: boolean
required:
- collection
- db
type: object
type: array
mongoDBMajorVersion:
type: string
mongoDBVersion:
Expand Down Expand Up @@ -282,6 +318,18 @@ spec:
- SHARDED
- GEOSHARDED
type: string
customZoneMapping:
items:
properties:
location:
type: string
zone:
type: string
required:
- location
- zone
type: object
type: array
diskSizeGB:
description: Capacity, in gigabytes, of the host's root volume.
Increase this number to add capacity, up to a maximum possible
Expand Down Expand Up @@ -317,6 +365,30 @@ spec:
- value
type: object
type: array
managedNamespaces:
items:
description: ManagedNamespace represents the information about
managed namespace configuration.
properties:
collection:
type: string
customShardKey:
type: string
db:
type: string
isCustomShardKeyHashed:
type: boolean
isShardKeyUnique:
type: boolean
numInitialChunks:
type: integer
presplitHashedZones:
type: boolean
required:
- collection
- db
type: object
type: array
mongoDBMajorVersion:
description: Version of the deployment to deploy.
type: string
Expand Down Expand Up @@ -792,6 +864,43 @@ spec:
cluster.
type: string
type: object
customZoneMapping:
properties:
customZoneMapping:
additionalProperties:
type: string
type: object
zoneMappingErrMessage:
type: string
zoneMappingState:
type: string
type: object
managedNamespaces:
items:
properties:
collection:
type: string
customShardKey:
type: string
db:
type: string
errMessage:
type: string
isCustomShardKeyHashed:
type: boolean
isShardKeyUnique:
type: boolean
numInitialChunks:
type: integer
presplitHashedZones:
type: boolean
status:
type: string
required:
- collection
- db
type: object
type: array
mongoDBVersion:
description: MongoDBVersion is the version of MongoDB the cluster
runs, in <major version>.<minor version> format.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,12 @@ metadata:
description: The MongoDB Atlas Kubernetes Operator enables easy management of Clusters in MongoDB Atlas
operators.operatorframework.io/builder: operator-sdk-v1.15.0+git
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
containerImage: mongodb/mongodb-atlas-kubernetes-operator:1.5.1
name: mongodb-atlas-kubernetes.v1.5.1
containerImage: mongodb/mongodb-atlas-kubernetes-operator:1.6.0
labels:
operatorframework.io/arch.amd64: supported
operatorframework.io/arch.arm64: supported
operatorframework.io/os.linux: supported
name: mongodb-atlas-kubernetes.v1.6.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -458,7 +462,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.annotations['olm.targetNamespaces']
image: mongodb/mongodb-atlas-kubernetes-operator:1.5.1
image: mongodb/mongodb-atlas-kubernetes-operator:1.6.0
imagePullPolicy: Always
livenessProbe:
httpGet:
Expand Down Expand Up @@ -533,5 +537,5 @@ spec:
maturity: beta
provider:
name: MongoDB, Inc
version: 1.5.1
replaces: mongodb-atlas-kubernetes.v1.5.0
version: 1.6.0
replaces: mongodb-atlas-kubernetes.v1.5.1
Loading

0 comments on commit 526b893

Please sign in to comment.