Skip to content

Commit fa2f92f

Browse files
Merge pull request #187 from kerthcet/new-release
Release v0.0.8
2 parents bd8e398 + 2921370 commit fa2f92f

File tree

9 files changed

+45
-29
lines changed

9 files changed

+45
-29
lines changed

.github/ISSUE_TEMPLATE/new-release.md

Lines changed: 10 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -12,35 +12,27 @@ assignees: ''
1212
Please do not remove items from the checklist
1313
-->
1414
- [ ] All [OWNERS](https://github.com/inftyai/llmaz/blob/main/OWNERS) must LGTM the release proposal
15-
- [ ] Verify that the changelog in this issue is up-to-date
1615
- [ ] Prepare the image and files
1716
- [ ] Run `PLATFORMS=linux/amd64 make image-push GIT_TAG=$VERSION` to build and push an image.
1817
- [ ] Run `make artifacts GIT_TAG=$VERSION` to generate the artifact.
1918
- [ ] Run `make helm-package` to package the helm chart and update the index.yaml.
20-
- [ ] Update `docs/installation.md`, `chart/README.md`
19+
- [ ] Update `chart/Chart.yaml` and `docs/installation.md`, the helm version is different with the app version.
2120
- [ ] Submit a PR and merge it.
2221
- [ ] An OWNER [prepares a draft release](https://github.com/inftyai/llmaz/releases)
2322
- [ ] Create a new tag
24-
- [ ] Write the change log into the draft release
23+
- [ ] Write the change log into the draft release which should include below items if any:
24+
```
25+
🚀 **Major Features**:
26+
✨ **Features**:
27+
🐛 **Bugs**:
28+
♻️ **Cleanups**:
29+
```
2530
- [ ] Upload the files to the draft release.
26-
- `manifests.yaml` under artifacts
27-
- new generated helm chart `*.zip` file
31+
- [ ] `manifests.yaml` under artifacts
32+
- [ ] new generated helm chart `*.zip` file
2833
- [ ] Publish the draft release prepared at the [Github releases page](https://github.com/inftyai/llmaz/releases)
2934
- [ ] Publish the helm chart
3035
- [ ] Run `git checkout gh-pages`
3136
- [ ] Copy the `index.yaml` from main branch
3237
- [ ] Submit a PR and merge it.
3338
- [ ] Close this issue
34-
35-
## Changelog
36-
<!--
37-
Describe changes since the last release here.
38-
-->
39-
40-
🚀 **Major Features**:
41-
42-
**Features**:
43-
44-
🐛 **Bugs**:
45-
46-
♻️ **Cleanups**:

chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ type: application
1313
# This is the chart version. This version number should be incremented each time you make changes
1414
# to the chart and its templates, including the app version.
1515
# Versions are expected to follow Semantic Versioning (https://semver.org/)
16-
version: 0.0.3
16+
version: 0.0.4
1717
# This is the version number of the application being deployed. This version number should be
1818
# incremented each time you make changes to the application. Versions are not expected to
1919
# follow Semantic Versioning. They should reflect the version the application is using.
2020
# It is recommended to use it with quotes.
21-
appVersion: 0.0.7
21+
appVersion: 0.0.8

chart/crds/openmodel-crd.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,26 @@ spec:
119119
description: ModelHub represents the model registry for model
120120
downloads.
121121
properties:
122+
allowPatterns:
123+
description: AllowPatterns refers to files matched with at
124+
least one pattern will be downloaded.
125+
items:
126+
type: string
127+
type: array
122128
filename:
123129
description: |-
124130
Filename refers to a specified model file rather than the whole repo.
125131
This is helpful to download a specified GGUF model rather than downloading
126132
the whole repo which includes all kinds of quantized models.
127133
in the near future.
134+
Note: once filename is set, allowPatterns and ignorePatterns should be left unset.
128135
type: string
136+
ignorePatterns:
137+
description: IgnorePatterns refers to files matched with any
138+
of the patterns will not be downloaded.
139+
items:
140+
type: string
141+
type: array
129142
modelID:
130143
description: |-
131144
ModelID refers to the model identifier on model hub,

chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ controllerManager:
3333
- ALL
3434
image:
3535
repository: inftyai/llmaz
36-
tag: v0.0.7
36+
tag: v0.0.8
3737
resources:
3838
limits:
3939
cpu: 500m

config/crd/bases/llmaz.io_openmodels.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ spec:
111111
downloads.
112112
properties:
113113
allowPatterns:
114-
description: AllowPatterns refers to only files matching at
115-
least one pattern are downloaded.
114+
description: AllowPatterns refers to files matched with at
115+
least one pattern will be downloaded.
116116
items:
117117
type: string
118118
type: array
@@ -122,10 +122,11 @@ spec:
122122
This is helpful to download a specified GGUF model rather than downloading
123123
the whole repo which includes all kinds of quantized models.
124124
in the near future.
125+
Note: once filename is set, allowPatterns and ignorePatterns should be left unset.
125126
type: string
126127
ignorePatterns:
127-
description: IgnorePatterns refers to files matching any of
128-
the patterns are not downloaded.
128+
description: IgnorePatterns refers to files matched with any
129+
of the patterns will not be downloaded.
129130
items:
130131
type: string
131132
type: array

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ kind: Kustomization
55
images:
66
- name: controller
77
newName: inftyai/llmaz
8-
newTag: v0.0.7
8+
newTag: v0.0.8

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
```cmd
1313
helm repo add inftyai https://inftyai.github.io/llmaz
1414
helm repo update
15-
helm install llmaz inftyai/llmaz --namespace llmaz-system --create-namespace --version 0.0.3
15+
helm install llmaz inftyai/llmaz --namespace llmaz-system --create-namespace --version 0.0.4
1616
```
1717

1818
### Uninstall

index.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
apiVersion: v1
22
entries:
33
llmaz:
4+
- apiVersion: v2
5+
appVersion: 0.0.8
6+
created: "2024-10-23T16:25:18.126844+08:00"
7+
description: A Helm chart for llmaz
8+
digest: e044f45cab602cdaab7a89a62494b46ace6c324ead014aca546a5362692509b8
9+
name: llmaz
10+
type: application
11+
urls:
12+
- https://inftyai.github.io/llmaz/llmaz-0.0.4.tgz
13+
version: 0.0.4
414
- apiVersion: v2
515
appVersion: 0.0.7
616
created: "2024-09-12T16:49:31.224669+08:00"
@@ -31,4 +41,4 @@ entries:
3141
urls:
3242
- https://inftyai.github.io/llmaz/llmaz-0.0.1.tgz
3343
version: 0.0.1
34-
generated: "2024-09-12T16:49:31.210833+08:00"
44+
generated: "2024-10-23T16:25:18.101337+08:00"

pkg/defaults.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ limitations under the License.
1717
package pkg
1818

1919
const (
20-
LOADER_IMAGE = "inftyai/model-loader:v0.0.8"
20+
LOADER_IMAGE = "inftyai/model-loader:v0.0.9"
2121
)

0 commit comments

Comments
 (0)