Skip to content

Commit 3c3336b

Browse files
authored
change helm chart name and page (#40)
# Summary <!-- Enter your issue summary here.--> ## Proof of Work <!-- Enter your proof that it works here.--> ## Checklist - [ ] Have you linked a jira ticket and/or is the ticket in the title? - [ ] Have you checked whether your jira ticket required DOCSP changes? - [ ] Have you checked for release_note changes? ## Reminder (Please remove this when merging) - Please try to Approve or Reject Changes the PR, keep PRs in review as short as possible - Our Short Guide for PRs: [Link](https://docs.google.com/document/d/1T93KUtdvONq43vfTfUt8l92uo4e4SEEvFbIEKOxGr44/edit?tab=t.0) - Remember the following Communication Standards - use comment prefixes for clarity: * **blocking**: Must be addressed before approval. * **follow-up**: Can be addressed in a later PR or ticket. * **q**: Clarifying question. * **nit**: Non-blocking suggestions. * **note**: Side-note, non-actionable. Example: Praise * --> no prefix is considered a question
1 parent bd4d20e commit 3c3336b

File tree

8 files changed

+60
-59
lines changed

8 files changed

+60
-59
lines changed

.githooks/pre-commit

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ function generate_standalone_yaml() {
3131
mkdir -p "${charttmpdir}"
3232

3333
FILES=(
34-
"${charttmpdir}/enterprise-operator/templates/operator-roles.yaml"
35-
"${charttmpdir}/enterprise-operator/templates/database-roles.yaml"
36-
"${charttmpdir}/enterprise-operator/templates/operator-sa.yaml"
37-
"${charttmpdir}/enterprise-operator/templates/operator.yaml"
34+
"${charttmpdir}/mongodb-kubernetes/templates/operator-roles.yaml"
35+
"${charttmpdir}/mongodb-kubernetes/templates/database-roles.yaml"
36+
"${charttmpdir}/mongodb-kubernetes/templates/operator-sa.yaml"
37+
"${charttmpdir}/mongodb-kubernetes/templates/operator.yaml"
3838
)
3939

4040
# generate normal public example
@@ -53,9 +53,9 @@ function generate_standalone_yaml() {
5353
--set operator.webhook.registerConfiguration=false --set operator.webhook.installClusterRole=false ${HELM_OPTS[@]}
5454

5555
# update kustomize files for OLM bundle with files generated for openshift
56-
cp "${charttmpdir}/enterprise-operator/templates/operator.yaml" config/manager/manager.yaml
57-
cp "${charttmpdir}/enterprise-operator/templates/database-roles.yaml" config/rbac/database-roles.yaml
58-
cp "${charttmpdir}/enterprise-operator/templates/operator-roles.yaml" config/rbac/operator-roles.yaml
56+
cp "${charttmpdir}/mongodb-kubernetes/templates/operator.yaml" config/manager/manager.yaml
57+
cp "${charttmpdir}/mongodb-kubernetes/templates/database-roles.yaml" config/rbac/database-roles.yaml
58+
cp "${charttmpdir}/mongodb-kubernetes/templates/operator-roles.yaml" config/rbac/operator-roles.yaml
5959

6060
# generate multi-cluster public example
6161
rm -rf "${charttmpdir:?}/*"

config/manager/manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
# Source: enterprise-operator/templates/operator.yaml
2+
# Source: mongodb-kubernetes/templates/operator.yaml
33
apiVersion: apps/v1
44
kind: Deployment
55
metadata:

config/rbac/database-roles.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
---
2-
# Source: enterprise-operator/templates/database-roles.yaml
2+
# Source: mongodb-kubernetes/templates/database-roles.yaml
33
apiVersion: v1
44
kind: ServiceAccount
55
metadata:
66
name: mongodb-enterprise-appdb
77
namespace: mongodb
88
---
9-
# Source: enterprise-operator/templates/database-roles.yaml
9+
# Source: mongodb-kubernetes/templates/database-roles.yaml
1010
apiVersion: v1
1111
kind: ServiceAccount
1212
metadata:
1313
name: mongodb-enterprise-database-pods
1414
namespace: mongodb
1515
---
16-
# Source: enterprise-operator/templates/database-roles.yaml
16+
# Source: mongodb-kubernetes/templates/database-roles.yaml
1717
apiVersion: v1
1818
kind: ServiceAccount
1919
metadata:
2020
name: mongodb-enterprise-ops-manager
2121
namespace: mongodb
2222
---
23-
# Source: enterprise-operator/templates/database-roles.yaml
23+
# Source: mongodb-kubernetes/templates/database-roles.yaml
2424
kind: Role
2525
apiVersion: rbac.authorization.k8s.io/v1
2626
metadata:
@@ -42,7 +42,7 @@ rules:
4242
- delete
4343
- get
4444
---
45-
# Source: enterprise-operator/templates/database-roles.yaml
45+
# Source: mongodb-kubernetes/templates/database-roles.yaml
4646
kind: RoleBinding
4747
apiVersion: rbac.authorization.k8s.io/v1
4848
metadata:

config/rbac/operator-roles.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
# Source: enterprise-operator/templates/operator-roles.yaml
2+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
33
---
44
# Additional ClusterRole for clusterVersionDetection
55
kind: ClusterRole
@@ -28,7 +28,7 @@ rules:
2828
verbs:
2929
- list
3030
---
31-
# Source: enterprise-operator/templates/operator-roles.yaml
31+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
3232
# ClusterRoleBinding for clusterVersionDetection
3333
kind: ClusterRoleBinding
3434
apiVersion: rbac.authorization.k8s.io/v1
@@ -43,7 +43,7 @@ subjects:
4343
name: mongodb-enterprise-operator
4444
namespace: mongodb
4545
---
46-
# Source: enterprise-operator/templates/operator-roles.yaml
46+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
4747
kind: Role
4848
apiVersion: rbac.authorization.k8s.io/v1
4949
metadata:
@@ -133,7 +133,7 @@ rules:
133133
- patch
134134
- update
135135
---
136-
# Source: enterprise-operator/templates/operator-roles.yaml
136+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
137137
kind: RoleBinding
138138
apiVersion: rbac.authorization.k8s.io/v1
139139
metadata:

helm_chart/Chart.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
apiVersion: v2
2-
name: enterprise-operator
3-
description: MongoDB Kubernetes Enterprise Operator
2+
name: mongodb-kubernetes
3+
description: MongoDB Controllers for Kubernetes translate the human knowledge of creating
4+
a MongoDB instance into a scalable, repeatable, and standardized method.
45
version: 0.1.0
56
kubeVersion: '>=1.16-0'
67
type: application
@@ -9,7 +10,7 @@ keywords:
910
- database
1011
- nosql
1112
icon: https://mongodb-images-new.s3.eu-west-1.amazonaws.com/leaf-green-dark.png
12-
home: https://github.com/mongodb/mongodb-enterprise-kubernetes
13+
home: https://github.com/mongodb/mongodb-kubernetes
1314
maintainers:
1415
- name: MongoDB
1516

public/mongodb-enterprise-multi-cluster.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
# Source: enterprise-operator/templates/operator-roles.yaml
2+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
33
kind: ClusterRole
44
apiVersion: rbac.authorization.k8s.io/v1
55
metadata:
@@ -26,7 +26,7 @@ rules:
2626
- update
2727
- delete
2828
---
29-
# Source: enterprise-operator/templates/operator-roles.yaml
29+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
3030
# Additional ClusterRole for clusterVersionDetection
3131
kind: ClusterRole
3232
apiVersion: rbac.authorization.k8s.io/v1
@@ -54,7 +54,7 @@ rules:
5454
verbs:
5555
- list
5656
---
57-
# Source: enterprise-operator/templates/operator-roles.yaml
57+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
5858
kind: ClusterRoleBinding
5959
apiVersion: rbac.authorization.k8s.io/v1
6060
metadata:
@@ -68,7 +68,7 @@ subjects:
6868
name: mongodb-enterprise-operator-multi-cluster
6969
namespace: mongodb
7070
---
71-
# Source: enterprise-operator/templates/operator-roles.yaml
71+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
7272
# ClusterRoleBinding for clusterVersionDetection
7373
kind: ClusterRoleBinding
7474
apiVersion: rbac.authorization.k8s.io/v1
@@ -83,7 +83,7 @@ subjects:
8383
name: mongodb-enterprise-operator-multi-cluster
8484
namespace: mongodb
8585
---
86-
# Source: enterprise-operator/templates/operator-roles.yaml
86+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
8787
kind: Role
8888
apiVersion: rbac.authorization.k8s.io/v1
8989
metadata:
@@ -173,7 +173,7 @@ rules:
173173
- patch
174174
- update
175175
---
176-
# Source: enterprise-operator/templates/operator-roles.yaml
176+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
177177
kind: RoleBinding
178178
apiVersion: rbac.authorization.k8s.io/v1
179179
metadata:
@@ -188,28 +188,28 @@ subjects:
188188
name: mongodb-enterprise-operator-multi-cluster
189189
namespace: mongodb
190190
---
191-
# Source: enterprise-operator/templates/database-roles.yaml
191+
# Source: mongodb-kubernetes/templates/database-roles.yaml
192192
apiVersion: v1
193193
kind: ServiceAccount
194194
metadata:
195195
name: mongodb-enterprise-appdb
196196
namespace: mongodb
197197
---
198-
# Source: enterprise-operator/templates/database-roles.yaml
198+
# Source: mongodb-kubernetes/templates/database-roles.yaml
199199
apiVersion: v1
200200
kind: ServiceAccount
201201
metadata:
202202
name: mongodb-enterprise-database-pods
203203
namespace: mongodb
204204
---
205-
# Source: enterprise-operator/templates/database-roles.yaml
205+
# Source: mongodb-kubernetes/templates/database-roles.yaml
206206
apiVersion: v1
207207
kind: ServiceAccount
208208
metadata:
209209
name: mongodb-enterprise-ops-manager
210210
namespace: mongodb
211211
---
212-
# Source: enterprise-operator/templates/database-roles.yaml
212+
# Source: mongodb-kubernetes/templates/database-roles.yaml
213213
kind: Role
214214
apiVersion: rbac.authorization.k8s.io/v1
215215
metadata:
@@ -231,7 +231,7 @@ rules:
231231
- delete
232232
- get
233233
---
234-
# Source: enterprise-operator/templates/database-roles.yaml
234+
# Source: mongodb-kubernetes/templates/database-roles.yaml
235235
kind: RoleBinding
236236
apiVersion: rbac.authorization.k8s.io/v1
237237
metadata:
@@ -246,14 +246,14 @@ subjects:
246246
name: mongodb-enterprise-appdb
247247
namespace: mongodb
248248
---
249-
# Source: enterprise-operator/templates/operator-sa.yaml
249+
# Source: mongodb-kubernetes/templates/operator-sa.yaml
250250
apiVersion: v1
251251
kind: ServiceAccount
252252
metadata:
253253
name: mongodb-enterprise-operator-multi-cluster
254254
namespace: mongodb
255255
---
256-
# Source: enterprise-operator/templates/operator.yaml
256+
# Source: mongodb-kubernetes/templates/operator.yaml
257257
apiVersion: apps/v1
258258
kind: Deployment
259259
metadata:

public/mongodb-enterprise-openshift.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
# Source: enterprise-operator/templates/operator-roles.yaml
2+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
33
kind: ClusterRole
44
apiVersion: rbac.authorization.k8s.io/v1
55
metadata:
@@ -26,7 +26,7 @@ rules:
2626
- update
2727
- delete
2828
---
29-
# Source: enterprise-operator/templates/operator-roles.yaml
29+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
3030
# Additional ClusterRole for clusterVersionDetection
3131
kind: ClusterRole
3232
apiVersion: rbac.authorization.k8s.io/v1
@@ -54,7 +54,7 @@ rules:
5454
verbs:
5555
- list
5656
---
57-
# Source: enterprise-operator/templates/operator-roles.yaml
57+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
5858
kind: ClusterRoleBinding
5959
apiVersion: rbac.authorization.k8s.io/v1
6060
metadata:
@@ -68,7 +68,7 @@ subjects:
6868
name: mongodb-enterprise-operator
6969
namespace: mongodb
7070
---
71-
# Source: enterprise-operator/templates/operator-roles.yaml
71+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
7272
# ClusterRoleBinding for clusterVersionDetection
7373
kind: ClusterRoleBinding
7474
apiVersion: rbac.authorization.k8s.io/v1
@@ -83,7 +83,7 @@ subjects:
8383
name: mongodb-enterprise-operator
8484
namespace: mongodb
8585
---
86-
# Source: enterprise-operator/templates/operator-roles.yaml
86+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
8787
kind: Role
8888
apiVersion: rbac.authorization.k8s.io/v1
8989
metadata:
@@ -173,7 +173,7 @@ rules:
173173
- patch
174174
- update
175175
---
176-
# Source: enterprise-operator/templates/operator-roles.yaml
176+
# Source: mongodb-kubernetes/templates/operator-roles.yaml
177177
kind: RoleBinding
178178
apiVersion: rbac.authorization.k8s.io/v1
179179
metadata:
@@ -188,28 +188,28 @@ subjects:
188188
name: mongodb-enterprise-operator
189189
namespace: mongodb
190190
---
191-
# Source: enterprise-operator/templates/database-roles.yaml
191+
# Source: mongodb-kubernetes/templates/database-roles.yaml
192192
apiVersion: v1
193193
kind: ServiceAccount
194194
metadata:
195195
name: mongodb-enterprise-appdb
196196
namespace: mongodb
197197
---
198-
# Source: enterprise-operator/templates/database-roles.yaml
198+
# Source: mongodb-kubernetes/templates/database-roles.yaml
199199
apiVersion: v1
200200
kind: ServiceAccount
201201
metadata:
202202
name: mongodb-enterprise-database-pods
203203
namespace: mongodb
204204
---
205-
# Source: enterprise-operator/templates/database-roles.yaml
205+
# Source: mongodb-kubernetes/templates/database-roles.yaml
206206
apiVersion: v1
207207
kind: ServiceAccount
208208
metadata:
209209
name: mongodb-enterprise-ops-manager
210210
namespace: mongodb
211211
---
212-
# Source: enterprise-operator/templates/database-roles.yaml
212+
# Source: mongodb-kubernetes/templates/database-roles.yaml
213213
kind: Role
214214
apiVersion: rbac.authorization.k8s.io/v1
215215
metadata:
@@ -231,7 +231,7 @@ rules:
231231
- delete
232232
- get
233233
---
234-
# Source: enterprise-operator/templates/database-roles.yaml
234+
# Source: mongodb-kubernetes/templates/database-roles.yaml
235235
kind: RoleBinding
236236
apiVersion: rbac.authorization.k8s.io/v1
237237
metadata:
@@ -246,14 +246,14 @@ subjects:
246246
name: mongodb-enterprise-appdb
247247
namespace: mongodb
248248
---
249-
# Source: enterprise-operator/templates/operator-sa.yaml
249+
# Source: mongodb-kubernetes/templates/operator-sa.yaml
250250
apiVersion: v1
251251
kind: ServiceAccount
252252
metadata:
253253
name: mongodb-enterprise-operator
254254
namespace: mongodb
255255
---
256-
# Source: enterprise-operator/templates/operator.yaml
256+
# Source: mongodb-kubernetes/templates/operator.yaml
257257
apiVersion: apps/v1
258258
kind: Deployment
259259
metadata:

0 commit comments

Comments
 (0)