Skip to content
This repository was archived by the owner on Sep 24, 2025. It is now read-only.

Commit 22bd464

Browse files
committed
Adding readme
1 parent b884d3f commit 22bd464

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

kubernetes/apps/readme.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
11
# Argo Applications
22

3-
The default Argo Applications in this directory are used to manage and maintain the ["core"](../core) services and applications of the Kubernetes cluster. These applications should be default and are required for the cluster to function properly.
3+
The default Argo Applications in this directory are used to manage and maintain the ["core"](../core) services and applications of the Kubernetes cluster. These applications should be default and are required for the cluster to function properly.
4+
5+
In order to deploy the applications, make sure you replace the `GIT_USERNAME` and `GIT_REPOSITORY` fields with your own GitHub username and repository name. You can do this by running the following commands:
6+
7+
## Mac OS
8+
9+
```bash
10+
GIT_USERNAME="danmanners"
11+
GIT_REPOSITORY="aws-argo-cluster-template"
12+
for file in $(find . -type f -name '*.yaml'); do
13+
sed -i '' "s/USERNAME/${GIT_USERNAME}/g" $file
14+
sed -i '' "s/REPOSITORY/${GIT_REPOSITORY}/g" $file
15+
done
16+
```
17+
18+
## Linux
19+
20+
```bash
21+
GIT_USERNAME="danmanners"
22+
GIT_REPOSITORY="aws-argo-cluster-template"
23+
for file in $(find . -type f -name '*.yaml'); do
24+
sed -i "s/USERNAME/${GIT_USERNAME}/g" $file
25+
sed -i "s/REPOSITORY/${GIT_REPOSITORY}/g" $file
26+
done
27+
```
28+
29+
> [!IMPORTANT]
30+
> Once you've replaced the `GIT_USERNAME` and `GIT_REPOSITORY` fields, make sure you commit the changes to your repository. This way, when you run `pulumi up` to deploy the cluster and associated resources to AWS, the applications can be deployed to the cluster successfully.

0 commit comments

Comments
 (0)