-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5641c18
commit 8292683
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,13 +24,15 @@ To make a new application available for installation, you'll need to: | |
- Fork this repository. | ||
- Create a new directory with your new application's name in your fork. | ||
- Create a `components` folder, and inside, another folder with your application's name. | ||
- In that latest folder, add, and organize your Argo CD manifest file(s) into it. | ||
- Annotate your Argo CD application with the following annotations. The Kubefirst platform uses this information to surface installed application in the UI. | ||
- In that latest folder, add, and organize your Argo CD manifest file(s) into it. | ||
- Annotate your Argo CD application with the following annotations. The Kubefirst platform uses this information to surface installed application in the UI. | ||
|
||
```yaml | ||
annotations: | ||
kubefirst.konstruct.io/application-name: <appName> | ||
kubefirst.konstruct.io/source: catalog-templates | ||
``` | ||
Check failure on line 35 in CONTRIBUTING.md GitHub Actions / markdown-checkTrailing spaces
|
||
- Don't forget to look at the [Kubefirst Tokens](#kubefirst-tokens) section as you can dynamically add specific values to your manifests like domain or cluster names. | ||
- In the root folder of your application create an "App of Apps" YAML file that will point to the component folder. | ||
- Add a SVG file of the application's logo, named `<appName>.svg` under the [logos folder](https://github.com/kubefirst/gitops-catalog/tree/main/logos). | ||
|