Skip to content

Commit 57b5e89

Browse files
committed
first commit
A
0 parents  commit 57b5e89

18 files changed

+1692
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Generate helm docs
2+
run-name: Generate helm docs ${{ github.ref_name }} by @${{ github.actor }}"
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
paths:
7+
- values.yaml
8+
- README.md.gotmpl
9+
- README.md
10+
- Chart.yaml
11+
12+
jobs:
13+
update-readme:
14+
runs-on: ubuntu-latest
15+
timeout-minutes: 5
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Render helm docs inside the README.md and push changes back to PR branch
20+
uses: losisin/helm-docs-github-action@v1
21+
with:
22+
chart-search-root: deployment/helm_chart/opik
23+
git-push: true
24+
git-push-user-name: "CometActions"
25+
git-push-user-email: "[email protected]"
26+
git-commit-message: "Update Helm documentation"

.helmignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Patterns to ignore when building packages.
2+
# This supports shell glob matching, relative path matching, and
3+
# negation (prefixed with !). Only one pattern per line.
4+
.DS_Store
5+
# Common VCS dirs
6+
.git/
7+
.gitignore
8+
.bzr/
9+
.bzrignore
10+
.hg/
11+
.hgignore
12+
.svn/
13+
# Common backup files
14+
*.swp
15+
*.bak
16+
*.tmp
17+
*.orig
18+
*~
19+
# Various IDEs
20+
.project
21+
.idea/
22+
*.tmproj
23+
.vscode/

Chart.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
apiVersion: v2
2+
name: s3proxy
3+
description: A Helm chart for deploying S3Proxy - Access other storage backends via the S3 API
4+
5+
# A chart can be either an 'application' or a 'library' chart.
6+
#
7+
# Application charts are a collection of templates that can be packaged into versioned archives
8+
# to be deployed.
9+
#
10+
# Library charts provide useful utilities or functions for the chart developer. They're included as
11+
# a dependency of application charts to inject those utilities and functions into the rendering
12+
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
13+
type: application
14+
15+
# This is the chart version. This version number should be incremented each time you make changes
16+
# to the chart and its templates, including the app version.
17+
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18+
version: 0.1.0
19+
20+
# This is the version number of the application being deployed. This version number should be
21+
# incremented each time you make changes to the application. Versions are not expected to
22+
# follow Semantic Versioning. They should reflect the version the application is using.
23+
# It is recommended to use it with quotes.
24+
appVersion: "2.7.0"

0 commit comments

Comments
 (0)