Skip to content

Commit

Permalink
feat: add adapter-dial to dial chart (#78)
Browse files Browse the repository at this point in the history
Co-authored-by: nepalevov <[email protected]>
Co-authored-by: Vladislav Yatsun <[email protected]>
  • Loading branch information
3 people authored Sep 13, 2024
1 parent 74db4c8 commit 7da3726
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
5 changes: 5 additions & 0 deletions charts/dial/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ dependencies:
alias: assistant
condition: assistant.enabled
version: 1.0.4
- name: dial-extension
repository: https://charts.epam-rail.com
alias: dial
condition: dial.enabled
version: 1.0.4
description: Umbrella chart for DIAL solution
home: https://epam-rail.com
icon: "https://docs.epam-rail.com/img/favicon.ico"
Expand Down
7 changes: 7 additions & 0 deletions charts/dial/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Kubernetes: `>=1.23.0-0`
| https://charts.epam-rail.com | bedrock(dial-extension) | 1.0.4 |
| https://charts.epam-rail.com | vertexai(dial-extension) | 1.0.4 |
| https://charts.epam-rail.com | assistant(dial-extension) | 1.0.4 |
| https://charts.epam-rail.com | dial(dial-extension) | 1.0.4 |

## Installing the Chart

Expand Down Expand Up @@ -113,6 +114,12 @@ helm install my-release dial/dial -f values.yaml
| chat.readinessProbe.httpGet.path | string | `"/api/health"` | |
| core.enabled | bool | `true` | Enable/disable ai-dial-core |
| core.image.tag | string | `"0.16.0"` | |
| dial.commonLabels."app.kubernetes.io/component" | string | `"adapter"` | |
| dial.enabled | bool | `false` | Enable/disable ai-dial-adapter-dial |
| dial.image.repository | string | `"epam/ai-dial-adapter-dial"` | |
| dial.image.tag | string | `"0.1.0"` | |
| dial.livenessProbe.enabled | bool | `true` | |
| dial.readinessProbe.enabled | bool | `true` | |
| extraDeploy | list | `[]` | |
| keycloak.enabled | bool | `false` | Enable/disable keycloak |
| keycloak.extraEnvVars[0].name | string | `"KC_FEATURES"` | |
Expand Down
16 changes: 16 additions & 0 deletions charts/dial/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,22 @@ vertexai:
readinessProbe:
enabled: true

### ai-dial-adapter-dial configuration ###
dial:
# -- Enable/disable ai-dial-adapter-dial
enabled: false
commonLabels:
app.kubernetes.io/component: "adapter"
image:
repository: epam/ai-dial-adapter-dial
tag: 0.1.0
# env:
# DIAL_URL: "http://{{ .Release.Name }}-core"
livenessProbe:
enabled: true
readinessProbe:
enabled: true

### ai-dial-assistant configuration ###
assistant:
# -- Enable/disable ai-dial-assistant
Expand Down

0 comments on commit 7da3726

Please sign in to comment.