Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

- Expose the `--verbose` and `--sign` runtime parameters as Helm variables.

## [2.4.0](https://github.com/coder/code-marketplace/releases/tag/v2.4.0) - 2025-09-04

### Added
Expand Down
6 changes: 6 additions & 0 deletions helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@ spec:
{{- else }}
- --extensions-dir
- /extensions
{{- if .Values.verboseLogging }}
- --verbose
{{- end }}
{{- if .Values.extensionSigning }}
- --sign
{{- end }}
{{- end }}
{{- if or (.Values.volumeMounts) (not .Values.persistence.artifactory.enabled) }}
volumeMounts:
Expand Down
6 changes: 6 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ image:

extraEnv: []

# Enables the `--verbose` command parameter to enable debug level logging.
verboseLogging: false

# Enables code-marketplace to add empty signatures to extensions per https://github.com/coder/code-marketplace/pull/84
extensionSigning: false

imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
Expand Down
Loading