Skip to content

Commit fe565af

Browse files
authored
Fix. fix readme - link to all-in-one (#63)
1 parent 3ab41f7 commit fe565af

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# MongoDB Atlas Operator
22
Welcome to MongoDB Atlas Operator - the Operator allowing to manage Atlas Clusters from Kubernetes.
3-
> Current Status: *pre-alpha*. We are currently working on the initial set of features that will give users the opportunity to provision Atlas projects, clusters and database users using Kubernetes Specifications and bind connection information into the applications deployed to Kubernetes.
3+
> Current Status: *pre-alpha*. We are currently working on the initial set of features that will give users the opportunity to provision Atlas projects, clusters and database users using Kubernetes Specifications and bind connection information into the applications deployed to Kubernetes.
44
## Quick Start guide
55
### Step 1. Deploy Kubernetes operator using all in one config file
66
```
7-
kubectl apply -f https://raw.githubusercontent.com/mongodb/mongodb-atlas-kubernetes/deploy/all-in-one.yaml
7+
kubectl apply -f https://raw.githubusercontent.com/mongodb/mongodb-atlas-kubernetes/main/deploy/all-in-one.yaml
88
```
99
### Step 2. Create Atlas Cluster
1010

@@ -14,11 +14,11 @@ In order to work with Atlas Operator you'll need to provide the [authentication
1414
kubectl create secret generic my-atlas-key \
1515
--from-literal="orgId=<the_atlas_organization_id>" \
1616
--from-literal="publicApiKey=<the_atlas_api_public_key>" \
17-
--from-literal="privateApiKey=<the_atlas_api_private_key>"
17+
--from-literal="privateApiKey=<the_atlas_api_private_key>"
1818
```
1919
**2.** Create `AtlasProject` Custom resource
2020

21-
`AtlasProject` represents Atlas Project in our Kubernetes cluster.
21+
`AtlasProject` represents Atlas Project in our Kubernetes cluster.
2222
Note: Property `connectionSecretRef` should reference the Secret `my-atlas-key` that was created in previous step:
2323
```
2424
cat <<EOF | kubectl apply -f -
@@ -33,7 +33,7 @@ spec:
3333
EOF
3434
```
3535
**3.** Create the `AtlasCluster` Resource.
36-
Example below is a minimal configuration for Atlas MongoDB Cluster in AWS US East region, size M10. For a full list of properties check
36+
Example below is a minimal configuration for Atlas MongoDB Cluster in AWS US East region, size M10. For a full list of properties check
3737
`atlasclusters.atlas.mongodb.com` [CRD specification](config/crd/bases/atlas.mongodb.com_atlasclusters.yaml)):
3838
```
3939
cat <<EOF | kubectl apply -f -
@@ -56,4 +56,3 @@ You can use the following command to track the status of the Atlas Cluster Resou
5656
```
5757
kubectl get atlasclusters.atlas.mongodb.com -o yaml
5858
```
59-

deploy/all-in-one.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ spec:
652652
- --enable-leader-election
653653
command:
654654
- /manager
655-
image: /mongodb/mongodb-atlas-kubernetes-operator:0.1.0
655+
image: mongodb/mongodb-atlas-kubernetes-operator:0.1.0
656656
imagePullPolicy: Always
657657
name: manager
658658
resources:

0 commit comments

Comments
 (0)