Skip to content

Commit 1b6ba14

Browse files
author
Anton Lisovenko
committed
2d04398e5cfbfea960b2e1050c25da6501ca98ed: update public repo contents
1 parent 1d00e0d commit 1b6ba14

File tree

5 files changed

+3
-61
lines changed

5 files changed

+3
-61
lines changed

README.md

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -124,28 +124,6 @@ For a user to be able to create or update objects in this Ops Manager Project th
124124
$ kubectl -n mongodb create secret generic my-credentials --from-literal="user=some@example.com" --from-literal="publicApiKey=my-public-api-key"
125125
```
126126

127-
In this example, a `Secret` object with the name `my-credentials` was created. The contents of this `Secret` object is the `user` and `publicApiKey` attribute. You can see this secret with a command like:
128-
129-
``` bash
130-
$ kubectl describe secrets/my-credentials -n mongodb
131-
132-
Name: my-credentials
133-
Namespace: mongodb
134-
Labels: <none>
135-
Annotations: <none>
136-
137-
Type: Opaque
138-
139-
Data
140-
====
141-
publicApiKey: 41 bytes
142-
user: 14 bytes
143-
```
144-
145-
We can't see the contents of the `Secret`, because it is a secret!
146-
This is good, it will allow us to maintain a separation between our
147-
users.
148-
149127
### Creating a MongoDB Object ###
150128

151129
A MongoDB object in Kubernetes can be a MongoDBStandalone, a MongoDBReplicaSet or a MongoDBShardedCluster (short names are `mst`, `mrs`, `msc`). We are going to create a replica set to test that everything is working as expected. There is a MongoDBReplicaSet yaml file in `samples/minimal/replicaset.yaml`.

crds.yaml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,6 @@ spec:
3232
type: string
3333
logLevel:
3434
type: string
35-
enum:
36-
- DEBUG
37-
- INFO
38-
- WARN
39-
- ERROR
40-
- FATAL
4135
required:
4236
- credentials
4337
- project
@@ -77,12 +71,6 @@ spec:
7771
type: string
7872
logLevel:
7973
type: string
80-
enum:
81-
- DEBUG
82-
- INFO
83-
- WARN
84-
- ERROR
85-
- FATAL
8674
required:
8775
- credentials
8876
- project
@@ -133,12 +121,6 @@ spec:
133121
type: string
134122
logLevel:
135123
type: string
136-
enum:
137-
- DEBUG
138-
- INFO
139-
- WARN
140-
- ERROR
141-
- FATAL
142124
required:
143125
- credentials
144126
- project

helm_chart/templates/crds.yaml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,6 @@ spec:
3030
type: string
3131
logLevel:
3232
type: string
33-
enum:
34-
- DEBUG
35-
- INFO
36-
- WARN
37-
- ERROR
38-
- FATAL
3933
required:
4034
- credentials
4135
- project
@@ -75,12 +69,6 @@ spec:
7569
type: string
7670
logLevel:
7771
type: string
78-
enum:
79-
- DEBUG
80-
- INFO
81-
- WARN
82-
- ERROR
83-
- FATAL
8472
required:
8573
- credentials
8674
- project
@@ -131,12 +119,6 @@ spec:
131119
type: string
132120
logLevel:
133121
type: string
134-
enum:
135-
- DEBUG
136-
- INFO
137-
- WARN
138-
- ERROR
139-
- FATAL
140122
required:
141123
- credentials
142124
- project

helm_chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ operator:
1616
name: mongodb-enterprise-operator
1717

1818
# Version of mongodb-enterprise-operator and mongodb-enterprise-database images
19-
version: 0.6
19+
version: '0.7'
2020

2121
registry:
2222
# Specify if images are pulled from private repository

mongodb-enterprise.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ spec:
8585
serviceAccountName: mongodb-enterprise-operator
8686
containers:
8787
- name: mongodb-enterprise-operator
88-
image: quay.io/mongodb/mongodb-enterprise-operator:0.6
88+
image: quay.io/mongodb/mongodb-enterprise-operator:0.7
8989
imagePullPolicy: Always
9090

9191
env:
@@ -99,7 +99,7 @@ spec:
9999

100100

101101
- name: MONGODB_ENTERPRISE_DATABASE_IMAGE
102-
value: quay.io/mongodb/mongodb-enterprise-database:0.6
102+
value: quay.io/mongodb/mongodb-enterprise-database:0.7
103103
- name: IMAGE_PULL_POLICY
104104
value: Always
105105

0 commit comments

Comments
 (0)