Skip to content

Commit

Permalink
Merge pull request #137 from langchain-ai/infra/update-0.6.54
Browse files Browse the repository at this point in the history
chore: bump to 0.6.54
  • Loading branch information
langchain-infra authored Aug 4, 2024
2 parents 1738688 + b62443b commit ed19891
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Adding a Feature Flag
# Enable a feature flag for an organization

We have provided a script to add a feature flag to your LangSmith tenant. The script is located in the `scripts` directory of this repository.
We have provided a script to enable a feature flag for a LangSmith organization. The script is located in the `scripts` directory of this repository.
### Prerequisites

Ensure you have the following tools/items ready.
Expand All @@ -27,13 +27,13 @@ Ensure you have the following tools/items ready.
Run the following command to run feature flag script

```bash
sh add_feature_flag_to_organization.sh <postgres connection url> <organization id> <feature flag name>
sh enable_feature_flag_in_organization.sh <postgres connection url> <organization id> <feature flag name>
```

For example, if you are using the script directly with port-forwarding, the command would look like:

```bash
sh add_feature_flag_to_organization.sh "postgres://postgres:postgres@localhost:5432/postgres" "6a389372-6e79-5cd0-bf66-d70249fb676e" "conversation_view_enabled"
sh enable_feature_flag_in_organization.sh "postgres://postgres:postgres@localhost:5432/postgres" "6a389372-6e79-5cd0-bf66-d70249fb676e" "conversation_view_enabled"
```

If you visit the Langsmith UI, you should now see the feature flag enabled.
26 changes: 13 additions & 13 deletions charts/langsmith/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ images:
backendImage:
repository: "docker.io/langchain/langsmith-backend"
pullPolicy: IfNotPresent
tag: "0.6.49"
tag: "0.6.54"
frontendImage:
repository: "docker.io/langchain/langsmith-frontend"
pullPolicy: IfNotPresent
tag: "0.6.49"
tag: "0.6.54"
platformBackendImage:
repository: "docker.io/langchain/langsmith-go-backend"
pullPolicy: IfNotPresent
tag: "0.6.49"
tag: "0.6.54"
playgroundImage:
repository: "docker.io/langchain/langsmith-playground"
pullPolicy: IfNotPresent
tag: "0.6.49"
tag: "0.6.54"
postgresImage:
repository: "docker.io/postgres"
pullPolicy: IfNotPresent
Expand Down Expand Up @@ -366,21 +366,21 @@ frontend:
httpGet:
path: /health
port: 8080
failureThreshold: 6
failureThreshold: 10
periodSeconds: 10
timeoutSeconds: 1
livenessProbe:
httpGet:
path: /health
port: 8080
failureThreshold: 6
failureThreshold: 10
periodSeconds: 10
timeoutSeconds: 1
readinessProbe:
httpGet:
path: /health
port: 8080
failureThreshold: 6
failureThreshold: 10
periodSeconds: 10
timeoutSeconds: 1
extraContainerConfig: {}
Expand Down Expand Up @@ -591,26 +591,26 @@ queue:
- "app.workers.queues.single_queue_worker.settings"
- "--check"
failureThreshold: 6
periodSeconds: 30
timeoutSeconds: 15
periodSeconds: 60
timeoutSeconds: 30
readinessProbe:
exec:
command:
- "saq"
- "app.workers.queues.single_queue_worker.settings"
- "--check"
failureThreshold: 6
periodSeconds: 30
timeoutSeconds: 15
periodSeconds: 60
timeoutSeconds: 30
livenessProbe:
exec:
command:
- "saq"
- "app.workers.queues.single_queue_worker.settings"
- "--check"
failureThreshold: 6
periodSeconds: 30
timeoutSeconds: 15
periodSeconds: 60
timeoutSeconds: 30
extraContainerConfig: {}
extraEnv: []
sidecars: []
Expand Down

0 comments on commit ed19891

Please sign in to comment.