Skip to content
Draft
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
6 changes: 6 additions & 0 deletions charts/platform/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this chart will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

- Annotated `values.yaml` with `# @section` markers and switched `README.md.gotmpl` to a per-section Markdown loop, grouping the generated values table by area instead of one flat list.

## [0.33.0] - 2026-04-30

### Added
Expand Down
1,025 changes: 646 additions & 379 deletions charts/platform/README.md

Large diffs are not rendered by default.

24 changes: 23 additions & 1 deletion charts/platform/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,29 @@ When upgrading between versions, please refer to the [CHANGELOG.md](CHANGELOG.md

{{ template "chart.requirementsSection" . }}

{{ template "chart.valuesSection" . }}
## Values

{{- range .Sections.Sections }}

### {{ .SectionName }}

| Key | Type | Default | Description |
|-----|------|---------|-------------|
{{- range .SectionItems }}
| {{ .Key }} | {{ .Type }} | {{ if .Default }}`{{ .Default }}`{{ else }}`{{ .AutoDefault }}`{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
{{- end }}
{{- end }}

{{- with .Sections.DefaultSection.SectionItems }}

### Other Values

| Key | Type | Default | Description |
|-----|------|---------|-------------|
{{- range . }}
| {{ .Key }} | {{ .Type }} | {{ if .Default }}`{{ .Default }}`{{ else }}`{{ .AutoDefault }}`{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
{{- end }}
{{- end }}

## Licensing

Expand Down
6 changes: 6 additions & 0 deletions charts/platform/charts/agent-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this chart will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

- Annotated `values.yaml` with `# @section` markers and switched `README.md.gotmpl` to a per-section Markdown loop, grouping the generated values table by area instead of one flat list.

## [0.5.0] - 2026-05-05

- **Enhancement**: allow global configuration of Ingress options. A new `global.ingress` block (`enabled`, `path`, `defaultPathType`, `ingressClassName`, `annotations`, `extraLabels`, `tls`) lets cluster-wide Ingress defaults be set once at the parent and propagate to every subchart, removing the need to repeat controller-wide config per subchart. `enabled` is OR-merged; scalar fields fall back to global when local is unset; `annotations` and `extraLabels` are merged with local winning on key collision; `tls` is concatenated (useful for a single wildcard certificate across all services).
Expand Down
452 changes: 294 additions & 158 deletions charts/platform/charts/agent-backend/README.md

Large diffs are not rendered by default.

25 changes: 23 additions & 2 deletions charts/platform/charts/agent-backend/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ The chart does not automatically define `cr.seqera.io` as the registry where to

The required values to set in order to have a working installation are:
- The `.image` section to point to your container registry.
- The Seqera Platform Service connection details under `.global.platformServiceAddress` and `.global.platformServicePort`. These point to the Platform backend service that the Agent Backend communicates with. When deploying this subchart as part of the parent `platform` umbrella chart, these values are inherited automatically from the parent chart's `global` section.
- The database connection details for the MySQL database under the `.database` section.
- The redis connection details under the `.redis` section.
- The Bedrock AgentCore runtime ARN under the `.bedrockAgentCoreArn` section.
Expand Down Expand Up @@ -51,7 +50,29 @@ When upgrading between versions, please refer to the [CHANGELOG.md](CHANGELOG.md

{{ template "chart.requirementsSection" . }}

{{ template "chart.valuesSection" . }}
## Values

{{- range .Sections.Sections }}

### {{ .SectionName }}

| Key | Type | Default | Description |
|-----|------|---------|-------------|
{{- range .SectionItems }}
| {{ .Key }} | {{ .Type }} | {{ if .Default }}`{{ .Default }}`{{ else }}`{{ .AutoDefault }}`{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
{{- end }}
{{- end }}

{{- with .Sections.DefaultSection.SectionItems }}

### Other Values

| Key | Type | Default | Description |
|-----|------|---------|-------------|
{{- range . }}
| {{ .Key }} | {{ .Type }} | {{ if .Default }}`{{ .Default }}`{{ else }}`{{ .AutoDefault }}`{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
{{- end }}
{{- end }}

## Licensing

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ should render a Deployment with default values:
- sh
- -c
- |
if [ -n "$REDISCLI_AUTH" ]; then echo "$(date): starting check redis '$REDIS_URI' (auth set)"; else echo "$(date): starting check redis '$REDIS_URI' (auth not set)"; fi
echo "$(date): starting check redis '$REDIS_URI' with password (if set) '$REDISCLI_AUTH'";
until redis-cli -u "$REDIS_URI" get hello; do
echo "$(date): see you in $SLEEP_PERIOD_SECONDS seconds"
sleep $SLEEP_PERIOD_SECONDS
Expand Down
Loading
Loading