File tree Expand file tree Collapse file tree 4 files changed +22
-2
lines changed
Expand file tree Collapse file tree 4 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 11apiVersion : v2
22type : application
33name : sourcebot
4- version : 0.1.66
4+ version : 0.1.67
55appVersion : v4.16.3
66description : Sourcebot is a self-hosted tool that helps you understand your codebase.
77icon : https://raw.githubusercontent.com/sourcebot-dev/sourcebot/ebf6721836b8f878d42bb8c1e844bdc7867a74fe/packages/web/public/logo_512.png
Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ metadata:
88 {{- include "sourcebot.labels" $ | nindent 4 }}
99spec :
1010 replicas : {{ $.Values.sourcebot.replicaCount }}
11+ {{- with $.Values.sourcebot.strategy }}
12+ strategy :
13+ {{- toYaml . | nindent 4 }}
14+ {{- end }}
1115 selector :
1216 matchLabels :
1317 {{- include "sourcebot.selectorLabels" $ | nindent 6 }}
Original file line number Diff line number Diff line change 3636 "type" : " integer" ,
3737 "minimum" : 1
3838 },
39+ "strategy" : {
40+ "type" : " object" ,
41+ "properties" : {
42+ "type" : {
43+ "type" : " string" ,
44+ "enum" : [" RollingUpdate" , " Recreate" ]
45+ },
46+ "rollingUpdate" : {
47+ "type" : " object"
48+ }
49+ }
50+ },
3951 "image" : {
4052 "type" : " object" ,
4153 "properties" : {
Original file line number Diff line number Diff line change 44 security :
55 # -- Allow insecure images to use bitnami legacy repository. Can be set to false if secure images are being used (Paid).
66 allowInsecureImages : true
7-
7+
88 # -- Global Docker registry secret names as an array
99 imagePullSecrets : []
1010
@@ -19,6 +19,10 @@ sourcebot:
1919 # -- Set the number of replicas for the deployment
2020 replicaCount : 1
2121
22+ # -- Deployment strategy configuration
23+ strategy :
24+ type : RollingUpdate
25+
2226 # Image configuration
2327 image :
2428 # -- Container image repository
You can’t perform that action at this time.
0 commit comments