Skip to content

Commit

Permalink
feat: create onecx-develop product (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrejpetras authored Jun 5, 2024
1 parent ea60865 commit d519440
Show file tree
Hide file tree
Showing 8 changed files with 81 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/build-release.yml
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
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
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

7 changes: 7 additions & 0 deletions .github/workflows/create-release.yml
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
11 changes: 11 additions & 0 deletions .github/workflows/helm-update-deps.yml
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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# onecx-develop
OneCx develop Management

OneCx develop tools
9 changes: 9 additions & 0 deletions helm/Chart.lock
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"
14 changes: 14 additions & 0 deletions helm/Chart.yaml
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
14 changes: 14 additions & 0 deletions helm/values.yaml
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"

0 comments on commit d519440

Please sign in to comment.