-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add ct.yaml Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Format Milvus charts Signed-off-by: quicksilver <[email protected]> * Add release.yml in Github Action Signed-off-by: quicksilver <[email protected]> * Add release.yml in Github Action Signed-off-by: quicksilver <[email protected]> * Add release.yml in Github Action Signed-off-by: quicksilver <[email protected]> * Add release.yml in Github Action Signed-off-by: quicksilver <[email protected]> * Add release.yml in Github Action Signed-off-by: quicksilver <[email protected]> * Update README.md Signed-off-by: quicksilver <[email protected]> * Update README.md Signed-off-by: quicksilver <[email protected]> * Update README.md Signed-off-by: quicksilver <[email protected]> * Update README.md Signed-off-by: quicksilver <[email protected]> * Update README.md Signed-off-by: quicksilver <[email protected]> * Update lint-test.yml Signed-off-by: quicksilver <[email protected]>
- Loading branch information
1 parent
6b9396e
commit a3ac21f
Showing
31 changed files
with
347 additions
and
259 deletions.
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 |
---|---|---|
|
@@ -5,20 +5,18 @@ on: | |
push: | ||
# file paths to consider in the event. Optional; defaults to all. | ||
paths: | ||
- 'templates/**' | ||
- 'Chart.yaml' | ||
- 'requirements.yaml' | ||
- 'values.yaml' | ||
- '.github/workflows/helm.yml' | ||
- 'charts/**' | ||
- 'ct.yaml' | ||
- '.github/workflows/lint-test.yml' | ||
- '!**.md' | ||
- '!**.txt' | ||
pull_request: | ||
# file paths to consider in the event. Optional; defaults to all. | ||
paths: | ||
- 'templates/**' | ||
- 'Chart.yaml' | ||
- 'requirements.yaml' | ||
- 'values.yaml' | ||
- '.github/workflows/helm.yml' | ||
- 'charts/**' | ||
- 'ct.yaml' | ||
- '.github/workflows/lint-test.yml' | ||
- '!**.md' | ||
- '!**.txt' | ||
|
||
jobs: | ||
|
@@ -34,14 +32,20 @@ jobs: | |
run: git fetch --prune --unshallow | ||
- name: Run chart-testing (lint) | ||
id: lint | ||
uses: helm/[email protected].1 | ||
uses: helm/[email protected].2 | ||
with: | ||
command: lint | ||
config: ct.yaml | ||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
# Only build a kind cluster if there are chart changes to test. | ||
if: steps.lint.outputs.changed == 'true' | ||
- name: Modify Values Yaml file | ||
shell: bash | ||
run: | | ||
sed -i '/^mysql:/{n;s/true/false/;}' charts/milvus/values.yaml | ||
- name: Run chart-testing (install) | ||
uses: helm/[email protected].1 | ||
uses: helm/[email protected].2 | ||
with: | ||
command: install | ||
config: ct.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,27 @@ | ||
name: Release Charts | ||
|
||
# This workflow is triggered on pushes or pull request to the repository. | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Fetch history | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Configure Git | ||
run: | | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
- name: Run chart-releaser | ||
uses: helm/[email protected] | ||
env: | ||
CR_TOKEN: "${{ secrets.CR_TOKEN }}" |
File renamed without changes.
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 |
---|---|---|
|
@@ -16,8 +16,7 @@ sources: | |
- https://github.com/milvus-io/milvus | ||
- https://github.com/milvus-io/milvus-helm | ||
maintainers: | ||
- name: milvus-dev | ||
email: [email protected] | ||
- name: community | ||
email: [email protected] | ||
engine: gotpl | ||
- email: [email protected] | ||
name: community | ||
url: www.zilliz.com | ||
engine: gotpl |
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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
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 @@ | ||
# See https://github.com/helm/chart-testing#configuration | ||
remote: origin | ||
chart-dirs: | ||
- charts/ | ||
validate-maintainers: false | ||
chart-repos: | ||
- incubator=https://kubernetes-charts-incubator.storage.googleapis.com/ | ||
- stable=https://kubernetes-charts.storage.googleapis.com/ | ||
helm-extra-args: --timeout 300s |