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
5 changes: 4 additions & 1 deletion charts/sophora-ugc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 2.3.0
- Added support for deploying extra resources

## 2.0.12
- link to sources at GitHub

Expand Down Expand Up @@ -33,4 +36,4 @@
## 2.0.0 -- 2024-02-13

- UGC Multimedia can now be deployed along with UGC
- Configuration options in the values.yaml were restructured. An example configuration with the new structure can be found in the README.md.
- Configuration options in the values.yaml were restructured. An example configuration with the new structure can be found in the README.md.
6 changes: 3 additions & 3 deletions charts/sophora-ugc/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.2.1
version: 2.3.0
annotations:
artifacthub.io/changes: |
- kind: fixed
description: "Fixed backendRef of httpRoute"
- kind: added
description: "Added support to deploy extra resources."
artifacthub.io/links: |
- name: Documentation for Sophora UGC
url: https://subshell.com/docs/ugc/
Expand Down
4 changes: 4 additions & 0 deletions charts/sophora-ugc/templates/extra-list.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{{- range .Values.extraDeploy }}
---
{{ include "common.tplvalues.render" (dict "value" . "context" $) }}
{{- end }}
3 changes: 3 additions & 0 deletions charts/sophora-ugc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ httpRoute:
# httpRoute.annotations annotations for the HTTPRoute
annotations: {}

# extraDeploy Additional Kubernetes resources to deploy with this release
extraDeploy: []

authentication:
secret:
server:
Expand Down
Loading