diff --git a/charts/incubator/chroma/.helmignore b/charts/incubator/chroma/.helmignore new file mode 100644 index 00000000000..77ca5567b26 --- /dev/null +++ b/charts/incubator/chroma/.helmignore @@ -0,0 +1,30 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl +# docs folder +/docs +# icon +icon.png diff --git a/charts/incubator/chroma/CHANGELOG.md b/charts/incubator/chroma/CHANGELOG.md new file mode 100644 index 00000000000..6afbcc5f802 --- /dev/null +++ b/charts/incubator/chroma/CHANGELOG.md @@ -0,0 +1,3 @@ +--- +title: Changelog +--- diff --git a/charts/incubator/chroma/Chart.yaml b/charts/incubator/chroma/Chart.yaml new file mode 100644 index 00000000000..19fee377479 --- /dev/null +++ b/charts/incubator/chroma/Chart.yaml @@ -0,0 +1,38 @@ +annotations: + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: AI + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator +apiVersion: v2 +appVersion: 0.4.22 +dependencies: + - name: common + version: 17.2.26 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] +deprecated: false +description: the AI-native open-source embedding database. +home: https://truecharts.org/charts/incubator/chroma +icon: https://truecharts.org/img/hotlink-ok/chart-icons/chroma.png +keywords: + - chroma + - embedding + - database +kubeVersion: ">=1.24.0-0" +maintainers: + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org +name: chroma +sources: + - https://github.com/chroma-core/chroma + - https://github.com/truecharts/charts/tree/master/charts/incubator/chroma + - https://ghcr.io/chroma-core/chroma +type: application +version: 0.0.1 diff --git a/charts/incubator/chroma/README.md b/charts/incubator/chroma/README.md new file mode 100644 index 00000000000..20f3c4cb7bb --- /dev/null +++ b/charts/incubator/chroma/README.md @@ -0,0 +1,28 @@ +--- +title: README +--- + +## General Info + +TrueCharts can be installed as both _normal_ Helm Charts or as Apps on TrueNAS SCALE. +However only installations using the TrueNAS SCALE Apps system are supported. + +For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/stable/jackett) + +**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)** + +## Support + +- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro). +- See the [Website](https://truecharts.org) +- Check our [Discord](https://discord.gg/tVsPTHWTtr) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) + +--- + +## Sponsor TrueCharts + +TrueCharts can only exist due to the incredible effort of our staff. +Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can! + +_All Rights Reserved - The TrueCharts Project_ diff --git a/charts/incubator/chroma/icon.png b/charts/incubator/chroma/icon.png new file mode 100644 index 00000000000..8ccda3e95d3 Binary files /dev/null and b/charts/incubator/chroma/icon.png differ diff --git a/charts/incubator/chroma/questions.yaml b/charts/incubator/chroma/questions.yaml new file mode 100644 index 00000000000..e30964dd877 --- /dev/null +++ b/charts/incubator/chroma/questions.yaml @@ -0,0 +1,85 @@ +# Include{groups} +portals: + open: +# Include{portalLink} + path: "/docs" +questions: +# Include{global} +# Include{workload} +# Include{workloadDeployment} +# Include{replicas1} +# Include{podSpec} +# Include{containerMain} +# Include{containerBasic} +# Include{containerAdvanced} +# Include{containerConfig} +# Include{podOptions} +# Include{serviceRoot} +# Include{serviceMain} +# Include{serviceSelectorLoadBalancer} +# Include{serviceSelectorExtras} + - variable: main + label: "Main Service Port Configuration" + schema: + additional_attrs: true + type: dict + attrs: + - variable: port + label: "Port" + description: "This port exposes the container port on the service" + schema: + type: int + default: 10690 + required: true +# Include{serviceExpertRoot} +# Include{serviceExpert} +# Include{serviceList} +# Include{persistenceRoot} + - variable: config + label: "App Config Storage" + description: "Stores the Application Configuration." + schema: + additional_attrs: true + type: dict + attrs: +# Include{persistenceBasic} +# Include{persistenceList} +# Include{ingressRoot} + - variable: main + label: "Main Ingress" + schema: + additional_attrs: true + type: dict + attrs: +# Include{ingressDefault} +# Include{ingressAdvanced} +# Include{ingressList} +# Include{securityContextRoot} + - variable: runAsUser + label: "runAsUser" + description: "The UserID of the user running the application" + schema: + type: int + default: 0 + - variable: runAsGroup + label: "runAsGroup" + description: "The groupID of the user running the application" + schema: + type: int + default: 0 +# Include{securityContextContainer} +# Include{securityContextAdvanced} +# Include{securityContextPod} + - variable: fsGroup + label: "fsGroup" + description: "The group that should own ALL storage." + schema: + type: int + default: 568 +# Include{resources} +# Include{advanced} +# Include{addons} +# Include{codeserver} +# Include{netshoot} +# Include{vpn} +# Include{documentation} diff --git a/charts/incubator/chroma/templates/NOTES.txt b/charts/incubator/chroma/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/incubator/chroma/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/incubator/chroma/templates/common.yaml b/charts/incubator/chroma/templates/common.yaml new file mode 100644 index 00000000000..b51394e00a4 --- /dev/null +++ b/charts/incubator/chroma/templates/common.yaml @@ -0,0 +1 @@ +{{ include "tc.v1.common.loader.all" . }} diff --git a/charts/incubator/chroma/values.yaml b/charts/incubator/chroma/values.yaml new file mode 100644 index 00000000000..52d6213bee5 --- /dev/null +++ b/charts/incubator/chroma/values.yaml @@ -0,0 +1,41 @@ +image: + repository: ghcr.io/chroma-core/chroma + pullPolicy: IfNotPresent + tag: 0.4.22@sha256:5c52289301c2f55b5d889edd16966f7349cb7b0e60619597f11e135ee406fec2 + +securityContext: + container: + runAsNonRoot: false + readOnlyRootFilesystem: false + runAsUser: 0 + runAsGroup: 0 + +service: + main: + ports: + main: + protocol: http + targetPort: 8000 + port: 10690 + +workload: + main: + podSpec: + containers: + main: + probes: + liveness: + path: "/api/v1/heartbeat" + readiness: + path: "/api/v1/heartbeat" + env: + IS_PERSISTENT: true + +persistence: + config: + enabled: true + mountPath: "/chroma/chroma" + +portal: + open: + enabled: true