File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## Unreleased
9
9
10
- - Updated the Kubernetes Deployment ` spec.strategy.type ` field to be of type ` Recreate `
10
+ - Update the Kubernetes Deployment ` spec.strategy.type ` field to be of type ` Recreate `
11
11
in order to properly handle upgrades/restarts as the default deployment creates a PVC
12
12
of type ` ReadWriteOnce ` and could only be assigned to one replica.
13
+ - Expose the ` --verbose ` and ` --sign ` runtime parameters as Helm variables.
13
14
14
15
## [ 2.4.0] ( https://github.com/coder/code-marketplace/releases/tag/v2.4.0 ) - 2025-09-04
15
16
Original file line number Diff line number Diff line change 72
72
{{- else }}
73
73
- --extensions-dir
74
74
- /extensions
75
+ {{- if .Values.verboseLogging }}
76
+ - --verbose
77
+ {{- end }}
78
+ {{- if .Values.extensionSigning }}
79
+ - --sign
80
+ {{- end }}
75
81
{{- end }}
76
82
{{- if or (.Values.volumeMounts) (not .Values.persistence.artifactory.enabled) }}
77
83
volumeMounts :
Original file line number Diff line number Diff line change @@ -12,6 +12,12 @@ image:
12
12
13
13
extraEnv : []
14
14
15
+ # Enables the `--verbose` command parameter to enable debug level logging.
16
+ verboseLogging : false
17
+
18
+ # Enables code-marketplace to add empty signatures to extensions per https://github.com/coder/code-marketplace/pull/84
19
+ extensionSigning : false
20
+
15
21
imagePullSecrets : []
16
22
nameOverride : " "
17
23
fullnameOverride : " "
You can’t perform that action at this time.
0 commit comments