Skip to content

Commit

Permalink
Release 0.8.0 (#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Mar 4, 2022
1 parent 3925ada commit c8b7b36
Show file tree
Hide file tree
Showing 17 changed files with 4,154 additions and 1,348 deletions.
6 changes: 5 additions & 1 deletion bundle.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
FROM scratch

LABEL com.redhat.openshift.versions="v4.5-v4.7"
LABEL com.redhat.delivery.backport=true
LABEL com.redhat.delivery.operator.bundle=true

# Core bundle labels.
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
LABEL operators.operatorframework.io.bundle.package.v1=mongodb-atlas-kubernetes
LABEL operators.operatorframework.io.bundle.channels.v1=beta
LABEL operators.operatorframework.io.bundle.channel.default.v1=beta
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.16.0
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.15.0+git
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v2

Expand Down
685 changes: 459 additions & 226 deletions bundle/manifests/atlas.mongodb.com_atlasclusters.yaml

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion bundle/manifests/atlas.mongodb.com_atlasdatabaseusers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,11 @@ spec:
username:
description: Username is a username for authenticating to MongoDB.
type: string
x509Type:
description: X509Type is X.509 method by which the database authenticates
the provided username
type: string
required:
- passwordSecretRef
- projectRef
- roles
- username
Expand Down
24 changes: 24 additions & 0 deletions bundle/manifests/atlas.mongodb.com_atlasprojects.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,36 @@ spec:
type: string
type: object
type: array
withDefaultAlertsSettings:
default: true
description: Flag that indicates whether to create the new project
with the default alert settings enabled. This parameter defaults
to true
type: boolean
x509CertRef:
description: X509CertRef is the name of the Kubernetes Secret which
contains PEM-encoded CA certificate
properties:
name:
description: Name is the name of the Kubernetes Resource
type: string
required:
- name
type: object
required:
- name
type: object
status:
description: AtlasProjectStatus defines the observed state of AtlasProject
properties:
AuthModes:
description: AuthModes contains a list of configured authentication
modes "SCRAM" is default authentication method and requires a password
for each user "X509" signifies that self-managed X.509 authentication
is configured
items:
type: string
type: array
conditions:
description: Conditions is the list of statuses showing the current
state of the Atlas Custom Resource
Expand Down
416 changes: 211 additions & 205 deletions bundle/manifests/mongodb-atlas-kubernetes.clusterserviceversion.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundle/metadata/annotations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ annotations:
operators.operatorframework.io.bundle.package.v1: mongodb-atlas-kubernetes
operators.operatorframework.io.bundle.channels.v1: beta
operators.operatorframework.io.bundle.channel.default.v1: beta
operators.operatorframework.io.metrics.builder: operator-sdk-v1.16.0
operators.operatorframework.io.metrics.builder: operator-sdk-v1.15.0+git
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v2

Expand Down
718 changes: 489 additions & 229 deletions deploy/all-in-one.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions deploy/clusterwide/clusterwide-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ spec:
spec:
containers:
- args:
- --atlas-domain=https://cloud.mongodb.com
- --atlas-domain=https://cloud.mongodb.com/
- --leader-elect
- --health-probe-bind-address=:8081
- --metrics-bind-address=127.0.0.1:8080
Expand All @@ -214,7 +214,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: mongodb/mongodb-atlas-kubernetes-operator:0.7.0
image: mongodb/mongodb-atlas-kubernetes-operator:0.8.0
imagePullPolicy: Always
livenessProbe:
httpGet:
Expand Down
Loading

0 comments on commit c8b7b36

Please sign in to comment.