Skip to content

Commit

Permalink
Release v0.0.8
Browse files Browse the repository at this point in the history
Signed-off-by: kerthcet <[email protected]>
  • Loading branch information
kerthcet committed Oct 23, 2024
1 parent 2555237 commit 2921370
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 28 deletions.
28 changes: 10 additions & 18 deletions .github/ISSUE_TEMPLATE/new-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,35 +12,27 @@ assignees: ''
Please do not remove items from the checklist
-->
- [ ] All [OWNERS](https://github.com/inftyai/llmaz/blob/main/OWNERS) must LGTM the release proposal
- [ ] Verify that the changelog in this issue is up-to-date
- [ ] Prepare the image and files
- [ ] Run `PLATFORMS=linux/amd64 make image-push GIT_TAG=$VERSION` to build and push an image.
- [ ] Run `make artifacts GIT_TAG=$VERSION` to generate the artifact.
- [ ] Run `make helm-package` to package the helm chart and update the index.yaml.
- [ ] Update `docs/installation.md`, `chart/README.md`
- [ ] Update `chart/Chart.yaml` and `docs/installation.md`, the helm version is different with the app version.
- [ ] Submit a PR and merge it.
- [ ] An OWNER [prepares a draft release](https://github.com/inftyai/llmaz/releases)
- [ ] Create a new tag
- [ ] Write the change log into the draft release
- [ ] Write the change log into the draft release which should include below items if any:
```
🚀 **Major Features**:
✨ **Features**:
🐛 **Bugs**:
♻️ **Cleanups**:
```
- [ ] Upload the files to the draft release.
- `manifests.yaml` under artifacts
- new generated helm chart `*.zip` file
- [ ] `manifests.yaml` under artifacts
- [ ] new generated helm chart `*.zip` file
- [ ] Publish the draft release prepared at the [Github releases page](https://github.com/inftyai/llmaz/releases)
- [ ] Publish the helm chart
- [ ] Run `git checkout gh-pages`
- [ ] Copy the `index.yaml` from main branch
- [ ] Submit a PR and merge it.
- [ ] Close this issue

## Changelog
<!--
Describe changes since the last release here.
-->

🚀 **Major Features**:

**Features**:

🐛 **Bugs**:

♻️ **Cleanups**:
4 changes: 2 additions & 2 deletions chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.3
version: 0.0.4
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 0.0.7
appVersion: 0.0.8
13 changes: 13 additions & 0 deletions chart/crds/openmodel-crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,26 @@ spec:
description: ModelHub represents the model registry for model
downloads.
properties:
allowPatterns:
description: AllowPatterns refers to files matched with at
least one pattern will be downloaded.
items:
type: string
type: array
filename:
description: |-
Filename refers to a specified model file rather than the whole repo.
This is helpful to download a specified GGUF model rather than downloading
the whole repo which includes all kinds of quantized models.
in the near future.
Note: once filename is set, allowPatterns and ignorePatterns should be left unset.
type: string
ignorePatterns:
description: IgnorePatterns refers to files matched with any
of the patterns will not be downloaded.
items:
type: string
type: array
modelID:
description: |-
ModelID refers to the model identifier on model hub,
Expand Down
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ controllerManager:
- ALL
image:
repository: inftyai/llmaz
tag: v0.0.7
tag: v0.0.8
resources:
limits:
cpu: 500m
Expand Down
9 changes: 5 additions & 4 deletions config/crd/bases/llmaz.io_openmodels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ spec:
downloads.
properties:
allowPatterns:
description: AllowPatterns refers to only files matching at
least one pattern are downloaded.
description: AllowPatterns refers to files matched with at
least one pattern will be downloaded.
items:
type: string
type: array
Expand All @@ -122,10 +122,11 @@ spec:
This is helpful to download a specified GGUF model rather than downloading
the whole repo which includes all kinds of quantized models.
in the near future.
Note: once filename is set, allowPatterns and ignorePatterns should be left unset.
type: string
ignorePatterns:
description: IgnorePatterns refers to files matching any of
the patterns are not downloaded.
description: IgnorePatterns refers to files matched with any
of the patterns will not be downloaded.
items:
type: string
type: array
Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ kind: Kustomization
images:
- name: controller
newName: inftyai/llmaz
newTag: v0.0.7
newTag: v0.0.8
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
```cmd
helm repo add inftyai https://inftyai.github.io/llmaz
helm repo update
helm install llmaz inftyai/llmaz --namespace llmaz-system --create-namespace --version 0.0.3
helm install llmaz inftyai/llmaz --namespace llmaz-system --create-namespace --version 0.0.4
```

### Uninstall
Expand Down
12 changes: 11 additions & 1 deletion index.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
apiVersion: v1
entries:
llmaz:
- apiVersion: v2
appVersion: 0.0.8
created: "2024-10-23T16:25:18.126844+08:00"
description: A Helm chart for llmaz
digest: e044f45cab602cdaab7a89a62494b46ace6c324ead014aca546a5362692509b8
name: llmaz
type: application
urls:
- https://inftyai.github.io/llmaz/llmaz-0.0.4.tgz
version: 0.0.4
- apiVersion: v2
appVersion: 0.0.7
created: "2024-09-12T16:49:31.224669+08:00"
Expand Down Expand Up @@ -31,4 +41,4 @@ entries:
urls:
- https://inftyai.github.io/llmaz/llmaz-0.0.1.tgz
version: 0.0.1
generated: "2024-09-12T16:49:31.210833+08:00"
generated: "2024-10-23T16:25:18.101337+08:00"

0 comments on commit 2921370

Please sign in to comment.