Skip to content

Commit 2098199

Browse files
authored
[ENH] Enable version file for Tilt only. (#3858)
## Description of changes Set flags for SysDb for Tilt only. Not for production. *Summarize the changes made by this PR.* - Improvements & Bug fixes - ... - New functionality - ... ## Test plan *How are these changes tested?* - [ ] Tests pass locally with `pytest` for python, `yarn test` for js, `cargo test` for rust ## Documentation Changes *Are all docstrings for user-facing APIs updated if required? Do we need to make documentation changes in the [docs repository](https://github.com/chroma-core/docs)?*
1 parent 0f8f1c8 commit 2098199

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Tiltfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ k8s_yaml(
7575
'k8s/distributed-chroma',
7676
namespace='chroma',
7777
values=[
78-
'k8s/distributed-chroma/values.yaml'
78+
'k8s/distributed-chroma/values.yaml',
79+
# Values for local development, and for CI/CD testing.
80+
'k8s/distributed-chroma/values.dev.yaml'
7981
]
8082
)
8183
)
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
sysdb:
2+
flags:
3+
version-file-enabled: true
4+

0 commit comments

Comments
 (0)