Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: DIAL release 1.6 #32

Merged
merged 5 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<!-- [Place an '[X]' (no spaces) in all applicable fields. Please remove unrelated fields.] -->

- [ ] Chart version bumped in `Chart.yaml` according to [semver](http://semver.org/)
- [ ] `appVersion` bumped in `Chart.yaml` if it's `dial` chart and any application version changed
- [ ] Variables are documented in the `values.yaml` and added to the `README.md` using [helm-docs](https://github.com/norwoodj/helm-docs)
- [ ] Title of the pull request follows [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/)

Expand Down
6 changes: 3 additions & 3 deletions charts/dial/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ annotations:
category: MachineLearning
licenses: Apache-2.0
apiVersion: v2
appVersion: "1.5.0"
appVersion: "1.6.0"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
Expand All @@ -22,7 +22,7 @@ dependencies:
repository: https://charts.epam-rail.com
alias: core
condition: core.enabled
version: 2.0.0
version: 2.0.1
- name: dial-extension
repository: https://charts.epam-rail.com
alias: chat
Expand Down Expand Up @@ -65,4 +65,4 @@ maintainers:
name: dial
sources:
- https://github.com/epam/ai-dial-helm/tree/main/charts/dial
version: 2.0.1
version: 2.1.0
8 changes: 4 additions & 4 deletions charts/dial/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# dial

![Version: 2.0.1](https://img.shields.io/badge/Version-2.0.1-informational?style=flat-square) ![AppVersion: 1.5.0](https://img.shields.io/badge/AppVersion-1.5.0-informational?style=flat-square)
![Version: 2.1.0](https://img.shields.io/badge/Version-2.1.0-informational?style=flat-square) ![AppVersion: 1.6.0](https://img.shields.io/badge/AppVersion-1.6.0-informational?style=flat-square)

Umbrella chart for DIAL solution

Expand All @@ -18,7 +18,7 @@ Kubernetes: `>=1.23.0-0`
|------------|------|---------|
| https://charts.bitnami.com/bitnami | common | 2.14.1 |
| https://charts.bitnami.com/bitnami | keycloak | 16.1.7 |
| https://charts.epam-rail.com | core(dial-core) | 2.0.0 |
| https://charts.epam-rail.com | core(dial-core) | 2.0.1 |
| https://charts.epam-rail.com | authhelper(dial-extension) | 1.0.2 |
| https://charts.epam-rail.com | chat(dial-extension) | 1.0.2 |
| https://charts.epam-rail.com | themes(dial-extension) | 1.0.2 |
Expand Down Expand Up @@ -100,7 +100,7 @@ helm install my-release dial/dial -f values.yaml
| chat.containerPorts.http | int | `3000` | |
| chat.enabled | bool | `true` | Enable/disable ai-dial-chat |
| chat.image.repository | string | `"epam/ai-dial-chat"` | |
| chat.image.tag | string | `"0.6.11"` | |
| chat.image.tag | string | `"0.8.0"` | |
| core.enabled | bool | `true` | Enable/disable ai-dial-core |
| core.image.tag | string | `"0.8.1"` | |
| extraDeploy | list | `[]` | |
Expand All @@ -115,7 +115,7 @@ helm install my-release dial/dial -f values.yaml
| openai.commonLabels."app.kubernetes.io/component" | string | `"adapter"` | |
| openai.enabled | bool | `false` | Enable/disable ai-dial-adapter-openai |
| openai.image.repository | string | `"epam/ai-dial-adapter-openai"` | |
| openai.image.tag | string | `"0.8.0"` | |
| openai.image.tag | string | `"0.10.0"` | |
| themes.commonLabels."app.kubernetes.io/component" | string | `"webserver"` | |
| themes.containerPorts.http | int | `8080` | |
| themes.containerSecurityContext.runAsUser | int | `101` | |
Expand Down
4 changes: 2 additions & 2 deletions charts/dial/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ chat:
app.kubernetes.io/component: "application"
image:
repository: epam/ai-dial-chat
tag: 0.6.11
tag: 0.8.0
containerPorts:
http: 3000

Expand Down Expand Up @@ -91,7 +91,7 @@ openai:
app.kubernetes.io/component: "adapter"
image:
repository: epam/ai-dial-adapter-openai
tag: 0.8.0
tag: 0.10.0
# env:
# DIAL_USE_FILE_STORAGE: "true"
# DIAL_URL: "http://{{ .Release.Name }}-core"
Expand Down
Loading