@@ -131,10 +131,11 @@ k8s_resource(
131
131
132
132
# Production Chroma
133
133
k8s_resource ('postgres' , resource_deps = ['k8s_setup' , 'namespace' ], labels = ["infrastructure" ], port_forwards = '5432:5432' )
134
- k8s_resource ('sysdb-migration' , resource_deps = ['postgres' , 'namespace' ], labels = ["infrastructure" ])
135
- k8s_resource ('logservice-migration' , resource_deps = ['postgres' , 'namespace' ], labels = ["infrastructure" ])
136
- k8s_resource ('logservice' , resource_deps = ['sysdb-migration' ], labels = ["chroma" ], port_forwards = '50052:50051' )
137
- k8s_resource ('sysdb' , resource_deps = ['sysdb-migration' ], labels = ["chroma" ], port_forwards = '50051:50051' )
134
+ # Jobs are suffixed with the image tag to ensure they are unique. In this context, the image tag is defined in k8s/distributed-chroma/values.yaml.
135
+ k8s_resource ('sysdb-migration-sysdb-migration' , resource_deps = ['postgres' , 'namespace' ], labels = ["infrastructure" ])
136
+ k8s_resource ('logservice-migration-logservice-migration' , resource_deps = ['postgres' , 'namespace' ], labels = ["infrastructure" ])
137
+ k8s_resource ('logservice' , resource_deps = ['sysdb-migration-sysdb-migration' ], labels = ["chroma" ], port_forwards = '50052:50051' )
138
+ k8s_resource ('sysdb' , resource_deps = ['sysdb-migration-sysdb-migration' ], labels = ["chroma" ], port_forwards = '50051:50051' )
138
139
k8s_resource ('frontend-service' , resource_deps = ['sysdb' , 'logservice' ],labels = ["chroma" ], port_forwards = '8000:8000' )
139
140
k8s_resource ('query-service' , resource_deps = ['sysdb' ], labels = ["chroma" ], port_forwards = '50053:50051' )
140
141
k8s_resource ('compaction-service' , resource_deps = ['sysdb' ], labels = ["chroma" ])
0 commit comments