Skip to content

Commit

Permalink
feat: add product helm (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrejpetras authored Dec 6, 2023
1 parent 4614ba2 commit f469df1
Show file tree
Hide file tree
Showing 7 changed files with 68 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Build Release
on:
push:
tags:
- '**'
jobs:
helm:
uses: onecx/ci-common/.github/workflows/helm-release.yml@v1
secrets: inherit
changelog:
uses: onecx/ci-common/.github/workflows/generate-changelog.yml@v1
needs: helm
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
19 changes: 19 additions & 0 deletions .github/workflows/product-helm-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build helm chart

on:
push:
branches:
- 'main'
- 'fix/[0-9]+.[0-9]+.x'
paths:
- 'helm/**'

jobs:
release:
uses: onecx/ci-common/.github/workflows/helm-build.yml@v1
secrets: inherit
with:
push: true
artifact: ''
helmdir: 'helm'
helmAbsoluteDir: true
10 changes: 10 additions & 0 deletions .github/workflows/product-helm-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Update helm chart dependencies

on:
repository_dispatch:
types: [helm-update-deps]

jobs:
release:
uses: onecx/ci-common/.github/workflows/helm-update-deps.yml@v1
secrets: inherit
3 changes: 3 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

How to:
https://onecx.github.io/docs/guides/current/documentation/setup/product.html
16 changes: 16 additions & 0 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: onecx-workspace
home: ""
sources: []
version: 0.0.0
description: ""
keywords: []
maintainers: []
icon: ""
apiversion: v2
condition: ""
tags: ""
appversion: 0.0.0
deprecated: false
annotations: {}
kubeversion: ""
type: ""
Empty file added helm/values.yaml
Empty file.

0 comments on commit f469df1

Please sign in to comment.