You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: kubernetes/chart/Chart.yaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ apiVersion: v2
2
2
type: application
3
3
name: sourcebot
4
4
version: 0.1.0
5
-
appVersion: ""
5
+
appVersion: v4.5.1
6
6
description: The open source Sourcegraph alternative. Sourcebot gives you a powerful interface to search though all your repos and branches across multiple code hosts.
The open source Sourcegraph alternative. Sourcebot gives you a powerful interface to search though all your repos and branches across multiple code hosts.
6
6
@@ -27,14 +27,13 @@ The open source Sourcegraph alternative. Sourcebot gives you a powerful interfac
27
27
| command | list |`[]`| Override the default command of the container. |
| license | object |`{}`| Configure the enterprise license key secret by providing license.secretName and license.secretKey to use a Kubernetes secret. |
47
46
| livenessProbe | object |`{"failureThreshold":5,"httpGet":{"path":"/","port":"http"},"initialDelaySeconds":10,"periodSeconds":10}`| Liveness probe to check if the container is alive. |
48
47
| livenessProbe.failureThreshold | int |`5`| Number of consecutive failures before marking the container as unhealthy. |
49
48
| livenessProbe.httpGet | object |`{"path":"/","port":"http"}`| Http GET request to check if the container is alive. |
@@ -67,7 +66,7 @@ The open source Sourcegraph alternative. Sourcebot gives you a powerful interfac
67
66
| readinessProbe.httpGet.port | string |`"http"`| Port to check. |
68
67
| readinessProbe.initialDelaySeconds | int |`10`| Initial delay before the first probe. |
69
68
| readinessProbe.periodSeconds | int |`10`| Frequency of the probe. |
70
-
| redis | object |`{}`| Configure the Redis secret. |
69
+
| redis | object |`{}`| Configure the Redis secret by providing redis.secretName and redis.secretKey to use a Kubernetes secret. |
71
70
| replicaCount | int |`1`| Set the number of replicas for the deployment. |
72
71
| resources | object |`{}`| Configure resource requests and limits for the container. |
73
72
| service | object |`{"annotations":{},"containerPort":3000,"port":3000,"type":"ClusterIP"}`| Configure the Sourcebot Kubernetes service. |
@@ -86,7 +85,12 @@ The open source Sourcegraph alternative. Sourcebot gives you a powerful interfac
86
85
| startupProbe.httpGet.path | string |`"/"`| Path to check. |
87
86
| startupProbe.httpGet.port | string |`"http"`| Port to check. |
88
87
| startupProbe.periodSeconds | int |`30`| Initial delay before the first probe. |
88
+
| storage | object |`{"accessModes":["ReadWriteOnce"],"className":"","enabled":true,"size":"10Gi"}`| Configure persistent storage for the application (volume is mounted at /data) to use the internal database. |
89
+
| storage.accessModes | list |`["ReadWriteOnce"]`| Access modes for the persistent volume. |
90
+
| storage.className | string |`""`| Storage class name for the persistent volume. |
0 commit comments