Skip to content

Commit cbbd154

Browse files
authored
Merge pull request #24 from chime/igna/1debit_to_chime
Move from @1debit to @chime
2 parents 1095de7 + 15fa090 commit cbbd154

File tree

17 files changed

+31
-31
lines changed

17 files changed

+31
-31
lines changed

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @1debit/infrastructure-eng
1+
* @chime/maintainers

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# mani-diffy
22

3-
![Tests](https://github.com/1debit/mani-diffy/actions/workflows/tests.yaml/badge.svg)
3+
![Tests](https://github.com/chime/mani-diffy/actions/workflows/tests.yaml/badge.svg)
44

5-
This program walks a hierarchy of Argo CD Application templates, renders Kubernetes manifests from the input templates, and posts the rendered files back for the user to review and validate.
5+
This program walks a hierarchy of Argo CD Application templates, renders Kubernetes manifests from the input templates, and posts the rendered files back for the user to review and validate.
66

7-
It is designed to be called from a CI job within a pull request, enabling the author to update templates and see the resulting manifests directly within the pull request before the changes are applied to the Kubernetes cluster.
7+
It is designed to be called from a CI job within a pull request, enabling the author to update templates and see the resulting manifests directly within the pull request before the changes are applied to the Kubernetes cluster.
88

99
The rendered manifests are kept within the repository, making diffs between revisions easy to parse, dramatically improving safety when updating complex application templates.
1010

@@ -19,8 +19,8 @@ The rendered manifests are kept within the repository, making diffs between revi
1919

2020
🫵 Submit a PR where you make a change to the overrides of the [`demo`](demo/README.md), and you'll see the [Github action]( [README](../../.github/workflows/generate-manifests-demos.yaml)) add a commit to your PR with the resulting changes.
2121

22-
<img width="1099" alt="1" src="https://github.com/1debit/mani-diffy/assets/9005904/6b6d9e45-57f7-43ff-906f-ebf4c0a03ad9">
23-
<img width="1701" alt="2" src="https://github.com/1debit/mani-diffy/assets/9005904/03d4a49e-1fc9-40a1-9882-1c032b2d345b">
22+
<img width="1099" alt="1" src="https://github.com/chime/mani-diffy/assets/9005904/6b6d9e45-57f7-43ff-906f-ebf4c0a03ad9">
23+
<img width="1701" alt="2" src="https://github.com/chime/mani-diffy/assets/9005904/03d4a49e-1fc9-40a1-9882-1c032b2d345b">
2424

2525
# See it in action in a video !
2626

@@ -29,7 +29,7 @@ In this screen recording a pull request is opened to make the following changes
2929
1. Bump the count of pods for the `foo` service in the prod cluster
3030
2. Add an annotation to all services
3131

32-
https://github.com/1debit/mani-diffy/assets/9005904/6c496996-f7af-4932-bf5d-01a5b57bbd99
32+
https://github.com/chime/mani-diffy/assets/9005904/6c496996-f7af-4932-bf5d-01a5b57bbd99
3333

3434

3535
## Post Renderers
@@ -44,7 +44,7 @@ The command will be called with the output directory as the first argument (e.g.
4444

4545
---
4646

47-
## Pre-requisites
47+
## Pre-requisites
4848

4949
This is for a new user that is looking to use mani-diffy on a new repo.
5050

@@ -55,7 +55,7 @@ In order to make use of mani-diffy on the repo that holds all of your ArgoCD app
5555

5656
`mani-diffy` itself makes no assumptions about how the repo is structured, as long as it can successfully render the charts it encounters while walking the Application tree.
5757

58-
However, you may find it useful to organize your repo similarly to the demo app, with 3 key directories :
58+
However, you may find it useful to organize your repo similarly to the demo app, with 3 key directories :
5959

6060
1. a "root" or "bootstrap" directory that holds all the ArgoCD applications manifests.
6161
2. a "charts" directory that contains all the helm charts needed for the ArgoCD applications.

demo/.zz.auto-generated/prod-app-group-1/manifest.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
server: https://kubernetes.default.svc
1111
project: default
1212
source:
13-
repoURL: https://github.com/1debit/mani-diffy.git
13+
repoURL: https://github.com/chime/mani-diffy.git
1414
path: charts/service
1515
helm:
1616
version: v3
@@ -34,7 +34,7 @@ spec:
3434
server: https://kubernetes.default.svc
3535
project: default
3636
source:
37-
repoURL: https://github.com/1debit/mani-diffy.git
37+
repoURL: https://github.com/chime/mani-diffy.git
3838
path: charts/service
3939
helm:
4040
version: v3

demo/.zz.auto-generated/prod-cluster/manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
server: https://kubernetes.default.svc
1111
project: default
1212
source:
13-
repoURL: https://github.com/1debit/mani-diffy.git
13+
repoURL: https://github.com/chime/mani-diffy.git
1414
targetRevision: HEAD
1515

1616
path: charts/app-of-apps

demo/.zz.auto-generated/test-app-group-1/manifest.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
server: https://kubernetes.default.svc
1111
project: default
1212
source:
13-
repoURL: https://github.com/1debit/mani-diffy.git
13+
repoURL: https://github.com/chime/mani-diffy.git
1414
path: charts/service
1515
helm:
1616
version: v3
@@ -34,7 +34,7 @@ spec:
3434
server: https://kubernetes.default.svc
3535
project: default
3636
source:
37-
repoURL: https://github.com/1debit/mani-diffy.git
37+
repoURL: https://github.com/chime/mani-diffy.git
3838
path: charts/service
3939
helm:
4040
version: v3
@@ -58,7 +58,7 @@ spec:
5858
server: https://kubernetes.default.svc
5959
project: default
6060
source:
61-
repoURL: https://github.com/1debit/mani-diffy.git
61+
repoURL: https://github.com/chime/mani-diffy.git
6262
path: charts/service
6363
helm:
6464
version: v3

demo/.zz.auto-generated/test-cluster/manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
server: https://kubernetes.default.svc
1111
project: default
1212
source:
13-
repoURL: https://github.com/1debit/mani-diffy.git
13+
repoURL: https://github.com/chime/mani-diffy.git
1414
targetRevision: HEAD
1515

1616
path: charts/app-of-apps

demo/bootstrap/prod-cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
valueFiles:
1919
- ../../overrides/bootstrap/prod-cluster.yaml
2020
path: charts/app-of-apps
21-
repoURL: https://github.com/1debit/mani-diffy.git
21+
repoURL: https://github.com/chime/mani-diffy.git
2222
targetRevision: HEAD
2323
syncPolicy:
2424
syncOptions:

demo/bootstrap/test-cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
valueFiles:
1919
- ../../overrides/bootstrap/test-cluster.yaml
2020
path: charts/app-of-apps
21-
repoURL: https://github.com/1debit/mani-diffy.git
21+
repoURL: https://github.com/chime/mani-diffy.git
2222
targetRevision: HEAD
2323
syncPolicy:
2424
syncOptions:

demo/charts/app-of-apps/templates/app-of-apps.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
server: https://kubernetes.default.svc
1111
project: default
1212
source:
13-
repoURL: https://github.com/1debit/mani-diffy.git
13+
repoURL: https://github.com/chime/mani-diffy.git
1414
targetRevision: HEAD
1515

1616
path: charts/app-of-apps

demo/charts/app-of-apps/templates/service.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
server: https://kubernetes.default.svc
1212
project: default
1313
source:
14-
repoURL: https://github.com/1debit/mani-diffy.git
14+
repoURL: https://github.com/chime/mani-diffy.git
1515
path: charts/service
1616
helm:
1717
version: v3

0 commit comments

Comments
 (0)