-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: create onecx-develop product (#1)
- Loading branch information
1 parent
ea60865
commit d519440
Showing
8 changed files
with
81 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: Build Release | ||
on: | ||
push: | ||
tags: | ||
- '**' | ||
jobs: | ||
release: | ||
uses: onecx/ci-product/.github/workflows/build-release.yml@v1 | ||
secrets: inherit |
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,15 @@ | ||
name: Build helm chart | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
- 'fix/[0-9]+.[0-9]+.x' | ||
paths: | ||
- 'helm/**' | ||
|
||
jobs: | ||
helm: | ||
uses: onecx/ci-product/.github/workflows/build.yml@v1 | ||
secrets: inherit | ||
|
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,7 @@ | ||
name: Create Release Version | ||
on: | ||
workflow_dispatch: | ||
jobs: | ||
release: | ||
uses: onecx/ci-common/.github/workflows/create-release.yml@v1 | ||
secrets: inherit |
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,11 @@ | ||
name: Update helm chart dependencies | ||
|
||
on: | ||
workflow_dispatch: | ||
repository_dispatch: | ||
types: [helm-update-deps] | ||
|
||
jobs: | ||
update: | ||
uses: onecx/ci-product/.github/workflows/helm-update-deps.yml@v1 | ||
secrets: inherit |
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# onecx-develop | ||
OneCx develop Management | ||
|
||
OneCx develop tools |
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,9 @@ | ||
dependencies: | ||
- name: helm-product | ||
repository: oci://ghcr.io/onecx/charts | ||
version: 0.2.0 | ||
- name: onecx-develop-adminer | ||
repository: oci://ghcr.io/onecx/charts | ||
version: 0.0.0-rc.5 | ||
digest: sha256:ec397fe28e7d3e9be19592d76ab030808908f08a82b5d9e9d4f3e37d385d467a | ||
generated: "2024-06-05T19:55:46.931389414+02:00" |
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,14 @@ | ||
apiversion: v2 | ||
name: onecx-develop | ||
version: 0.0.0 | ||
appversion: 0.0.0 | ||
dependencies: | ||
- name: helm-product | ||
version: ^0 | ||
repository: oci://ghcr.io/onecx/charts | ||
alias: product | ||
- name: onecx-develop-adminer | ||
version: "*-0" | ||
repository: oci://ghcr.io/onecx/charts | ||
condition: deployment.adminer | ||
alias: adminer |
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,14 @@ | ||
# enable or disable deployment of components | ||
deployment: | ||
# adminer component | ||
adminer: true | ||
|
||
product: | ||
info: | ||
enabled: false | ||
data: | ||
description: "OneCX Develop Tools" | ||
imageUrl: "" | ||
iconName: "palette" | ||
displayName: "OneCX Develop Tools" | ||
basePath: "/develop" |