Skip to content

Commit e0bcfdc

Browse files
author
alisovenko
committed
cc6aed8fe06dbe31eda533b1d3721dafbfbb5081: update public repo contents
1 parent 8b7ffa1 commit e0bcfdc

File tree

5 files changed

+11
-25
lines changed

5 files changed

+11
-25
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ users.
130130

131131
### Creating a MongoDB Object ###
132132

133-
A MongoDB object in Kubernetes can be a MongoDBStandalone, a MongoDBReplicaSet or a MongoDBShardedCluster. 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/replica-set.yaml`.
133+
A MongoDB object in Kubernetes can be a MongoDBStandalone, a MongoDBReplicaSet or a MongoDBShardedCluster. 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`.
134134

135135
If you have a correctly created Project with the name `my-project` and Credentials stored in a secret called `my-credentials` then, after applying this file then everything should be running and a new Replica Set with 3 members should soon appear in Ops Manager UI.
136136

137-
kubectl apply -f samples/minimal/replica-set.yaml
137+
kubectl apply -f samples/minimal/replicaset.yaml

crds.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
##---
22
# Source: mongodb-enterprise-operator/templates/crds.yaml
33

44

helm_chart/templates/namespace.yaml

Lines changed: 0 additions & 7 deletions
This file was deleted.

helm_chart/values.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Create the CustomerResourceDefinition for MongoDB custom types.
22
createCrds: true
33

4-
# Create a Namespace for the Operator to be installed
5-
createNamespace: true
64
# Name of the Namespace to use
75
namespace: mongodb
86

@@ -11,13 +9,17 @@ namespace: mongodb
119
managedSecurityContext: false
1210

1311
operator:
14-
# Execution environment for the operator, dev or prod.
12+
# Execution environment for the operator, dev or prod. Use dev for more verbose logging
1513
env: prod
1614

15+
# Name that will be assigned to most of internal Kubernetes objects like Deployment, ServiceAccount, Role etc.
1716
name: mongodb-enterprise-operator
17+
18+
# Version of mongodb-enterprise-operator and mongodb-enterprise-database images
1819
version: 0.3
1920

2021
registry:
22+
# Specify if images are pulled from private repository
2123
imagePullSecrets: null
2224
pullPolicy: Always
2325
repository: quay.io/mongodb

mongodb-enterprise.yaml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
---
2-
# Source: mongodb-enterprise-operator/templates/namespace.yaml
3-
4-
---
5-
apiVersion: v1
6-
kind: Namespace
7-
metadata:
8-
name: mongodb
9-
10-
---
1+
##---
112
# Source: mongodb-enterprise-operator/templates/roles.yaml
123
---
134
kind: Role
@@ -54,15 +45,15 @@ subjects:
5445
- kind: ServiceAccount
5546
name: mongodb-enterprise-operator
5647
namespace: mongodb
57-
---
48+
##---
5849
# Source: mongodb-enterprise-operator/templates/serviceaccount.yaml
5950
---
6051
apiVersion: v1
6152
kind: ServiceAccount
6253
metadata:
6354
name: mongodb-enterprise-operator
6455
namespace: mongodb
65-
---
56+
##---
6657
# Source: mongodb-enterprise-operator/templates/operator.yaml
6758
---
6859
apiVersion: apps/v1

0 commit comments

Comments
 (0)