-
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.
add the "grapple solution framework" (#167)
- Loading branch information
1 parent
2c34a0d
commit 77e6825
Showing
3 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
grapple-solution-framework/components/grapple-solution-framework/application.yaml
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,38 @@ | ||
--- | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: Application | ||
metadata: | ||
name: <CLUSTER_NAME>-grapple-solution-framework | ||
namespace: argocd | ||
spec: | ||
project: <PROJECT> | ||
source: | ||
repoURL: "public.ecr.aws/p7h7z5g3" | ||
targetRevision: "0.2.8" | ||
chart: "grapple-installer" | ||
helm: | ||
values: | | ||
platform: "Kubefirst" | ||
kubeblocks: | ||
enabled: true | ||
grapple: | ||
dns: "<DOMAIN_NAME>" | ||
version: "0.2.8" | ||
kubefirst: | ||
provider: "<CLOUD_PROVIDER>" | ||
region: "<CLOUD_REGION>" | ||
cluster: | ||
name: "<CLUSTER_NAME>" | ||
id: "<CLUSTER_ID>" | ||
organization: "<GITHUB_OWNER><GITLAB_OWNER>" | ||
githubuser: "<GITHUB_USER>" | ||
gitlabuser: "<GITLAB_USER>" | ||
destination: | ||
name: <CLUSTER_DESTINATION> | ||
namespace: grpl-system | ||
syncPolicy: | ||
automated: | ||
prune: true | ||
selfHeal: true | ||
syncOptions: | ||
- CreateNamespace=true |
23 changes: 23 additions & 0 deletions
23
grapple-solution-framework/grapple-solution-framework.yaml
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,23 @@ | ||
--- | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: Application | ||
metadata: | ||
name: <CLUSTER_NAME>-grapple-solution-framework-components | ||
namespace: argocd | ||
annotations: | ||
argocd.argoproj.io/sync-wave: '150' | ||
spec: | ||
project: default | ||
source: | ||
repoURL: <GITOPS_REPO_URL> | ||
path: <REGISTRY_PATH>/components/grapple-solution-framework | ||
targetRevision: HEAD | ||
destination: | ||
name: in-cluster | ||
namespace: grpl-system | ||
syncPolicy: | ||
automated: | ||
prune: true | ||
selfHeal: true | ||
syncOptions: | ||
- CreateNamespace=true |
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