Skip to content
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
10 changes: 8 additions & 2 deletions deploy/helm/moai-inference-framework/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,11 @@ dependencies:
- name: kubernetes-replicator
repository: https://helm.mittwald.de
version: 2.12.2
digest: sha256:9839afee1d2faba5770d929ab7c3b2ab9a499d84e027cc717312dfb89776c96c
generated: "2025-12-24T23:30:50.909735741+09:00"
- name: odin
repository: https://moreh-dev.github.io/helm-charts
version: v0.3.0
- name: odin-crd
repository: https://moreh-dev.github.io/helm-charts
version: v0.3.0
digest: sha256:c5fee931da073fad053a376948d7d9d3c09a3f628d1ab2bded981730b8160da2
generated: "2025-12-26T21:41:21.603343091+09:00"
8 changes: 8 additions & 0 deletions deploy/helm/moai-inference-framework/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ dependencies:
version: 0.7.0
repository: oci://registry.k8s.io/lws/charts
condition: lws.enabled
- name: odin
version: v0.3.0
repository: https://moreh-dev.github.io/helm-charts
condition: odin.enabled
- name: odin-crd
version: v0.3.0
repository: https://moreh-dev.github.io/helm-charts
condition: odin-crd.enabled
- name: kubernetes-replicator
version: 2.12.2
repository: https://helm.mittwald.de
Expand Down
6 changes: 5 additions & 1 deletion deploy/helm/moai-inference-framework/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Moreh Inference Framework
| Repository | Name | Version |
|------------|------|---------|
| https://helm.mittwald.de | kubernetes-replicator | 2.12.2 |
| https://moreh-dev.github.io/helm-charts | odin | v0.3.0 |
| https://moreh-dev.github.io/helm-charts | odin-crd | v0.3.0 |
| oci://registry-1.docker.io/bitnamicharts | common | 2.31.4 |
| oci://registry.k8s.io/lws/charts | lws | 0.7.0 |

Expand Down Expand Up @@ -42,10 +44,12 @@ Moreh Inference Framework
| fullnameOverride | string | `""` | Full name override. |
| global | object | `{"imagePullSecrets":[]}` | global values are shared across all sub-charts if the value's key matches. |
| global.imagePullSecrets | list | `[]` | Image pull secrets. |
| kubernetes-replicator.enabled | bool | `true` | Enable Kubernetes Replicator. Set to false if already deployed. |
| kubernetes-replicator.enabled | bool | `true` | Enable mittwald/kubernetes-replicator. Set to false if already deployed. |
| lws.enabled | bool | `true` | Enable kubernetes-sigs/lws. Set to false if already deployed. |
| nameOverride | string | `""` | Chart name override. |
| namespaceOverride | string | `""` | Namespace override. |
| odin-crd.enabled | bool | `true` | Enable moreh/odin CRD. Set to false if already deployed. |
| odin.enabled | bool | `true` | Enable moreh/odin. Set to false if already deployed. |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)
Binary file not shown.
Binary file not shown.
10 changes: 9 additions & 1 deletion deploy/helm/moai-inference-framework/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,16 @@ lws:
# -- Enable kubernetes-sigs/lws. Set to false if already deployed.
enabled: true

odin:
# -- Enable moreh/odin. Set to false if already deployed.
enabled: true

odin-crd:
# -- Enable moreh/odin CRD. Set to false if already deployed.
enabled: true

kubernetes-replicator:
# -- Enable Kubernetes Replicator. Set to false if already deployed.
# -- Enable mittwald/kubernetes-replicator. Set to false if already deployed.
enabled: true

ecrTokenRefresher:
Expand Down