-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add possibility of the generic app (#201)
- Loading branch information
Showing
6 changed files
with
227 additions
and
158 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Sometimes you need a very generic app quickly to test something. This Argo CD ApplicationSet does just that: creates a basic deployment for you to use for testing a docker image that has no helm chart. | ||
|
||
## Example config | ||
|
||
```yaml | ||
apps: | ||
generic_app: | ||
enabled: false | ||
description: | | ||
A generic Argo CD ApplicationSet using a generic app helm chart: | ||
[link=https://github.com/small-hack/generic-app-helm]https://github.com/small-hack/generic-app-helm[/link] | ||
You can also use this as a template and change the name of the app to your own app name. | ||
argo: | ||
secret_keys: | ||
# the name of the release, namespace, and project for the argocd app | ||
app_name: "generic-app" | ||
# change only if you need to use another image registry instead of docker.io | ||
image_registry: "docker.io" | ||
# change this to the image repo you want to deploy | ||
image_repo: "nginx" | ||
# change this the image tag you want to deploy | ||
image_tag: "latest" | ||
repo: https://github.com/small-hack/argocd-apps | ||
path: generic-app/ | ||
revision: main | ||
# you could change this to your app name | ||
namespace: generic-app | ||
directory_recursion: false | ||
project: | ||
# you could change this to your app name | ||
name: generic-app | ||
source_repos: | ||
- https://small-hack.github.io/generic-app-helm | ||
destination: | ||
# you could change this to your app name | ||
namespaces: | ||
- generic-app | ||
``` |
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
Oops, something went wrong.