diff --git a/charts/langsmith/docs/ADD-FEATURE-FLAG.md b/charts/langsmith/docs/ENABLE-FEATURE-FLAG-FOR-ORGANIZATION.md similarity index 71% rename from charts/langsmith/docs/ADD-FEATURE-FLAG.md rename to charts/langsmith/docs/ENABLE-FEATURE-FLAG-FOR-ORGANIZATION.md index 67a379b..859f12b 100644 --- a/charts/langsmith/docs/ADD-FEATURE-FLAG.md +++ b/charts/langsmith/docs/ENABLE-FEATURE-FLAG-FOR-ORGANIZATION.md @@ -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. @@ -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 +sh enable_feature_flag_in_organization.sh ``` 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. diff --git a/charts/langsmith/scripts/add_feature_flag_to_organization.sh b/charts/langsmith/scripts/enable_feature_flag_for_organization.sh similarity index 100% rename from charts/langsmith/scripts/add_feature_flag_to_organization.sh rename to charts/langsmith/scripts/enable_feature_flag_for_organization.sh diff --git a/charts/langsmith/values.yaml b/charts/langsmith/values.yaml index c5ce1ad..c6520be 100644 --- a/charts/langsmith/values.yaml +++ b/charts/langsmith/values.yaml @@ -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 @@ -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: {} @@ -591,8 +591,8 @@ queue: - "app.workers.queues.single_queue_worker.settings" - "--check" failureThreshold: 6 - periodSeconds: 30 - timeoutSeconds: 15 + periodSeconds: 60 + timeoutSeconds: 30 readinessProbe: exec: command: @@ -600,8 +600,8 @@ queue: - "app.workers.queues.single_queue_worker.settings" - "--check" failureThreshold: 6 - periodSeconds: 30 - timeoutSeconds: 15 + periodSeconds: 60 + timeoutSeconds: 30 livenessProbe: exec: command: @@ -609,8 +609,8 @@ queue: - "app.workers.queues.single_queue_worker.settings" - "--check" failureThreshold: 6 - periodSeconds: 30 - timeoutSeconds: 15 + periodSeconds: 60 + timeoutSeconds: 30 extraContainerConfig: {} extraEnv: [] sidecars: []