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
4 changes: 2 additions & 2 deletions charts/olivetin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: olivetin
description: OliveTin web interface for running predefined shell commands
type: application
version: 1.1.13
appVersion: "3000.16.1"
appVersion: "3000.16.2"
kubeVersion: ">=1.26.0-0"
maintainers:
- name: helmforgedev
Expand All @@ -24,7 +24,7 @@ sources:
annotations:
artifacthub.io/changes: |
- kind: changed
description: "bump olivetin to 3000.16.1 (#622)"
description: "bump olivetin to 3000.16.2 (#701)"
artifacthub.io/maintainers: |
- name: HelmForge
email: berlofa@helmforge.dev
Expand Down
9 changes: 8 additions & 1 deletion charts/olivetin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ kubectl port-forward svc/<release>-olivetin 1337:80
| `configInit.enabled` | `true` | Prepare writable OliveTin runtime files before startup |
| `configInit.resources` | requests/limits set | Resource guardrails for the config bootstrap init container |
| `configInit.securityContext` | non-root | Security context for the config bootstrap init container |
| `image.tag` | `3000.15.0` | OliveTin image tag |
| `image.tag` | `3000.16.2` | OliveTin image tag |
| `securityContext` | non-root | Security context for the OliveTin application container |
| `olivetin.port` | `1337` | Application port |
| `config` | `""` | OliveTin YAML configuration. Empty uses the chart-managed default config. |
Expand Down Expand Up @@ -101,6 +101,13 @@ only when you intentionally want Helm to render templates inside `config`.

See the [OliveTin documentation](https://docs.olivetin.app) for all available options.

## Upgrade Notes

OliveTin `3000.16.2` is a bugfix release focused on Windows packaging and
upstream unit test stability. Upstream reports no upgrade warnings or breaking
changes between `3000.16.1` and `3000.16.2`; keep the chart-managed config and
persistent data paths unchanged when rolling production deployments.

### Security Scan: olivetin

| Framework | Score |
Expand Down
6 changes: 0 additions & 6 deletions charts/olivetin/examples/gateway-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,3 @@ gatewayAPI:
namespace: gateway-system
hostnames:
- olivetin.example.com
rules:
- matches:
- path:
type: PathPrefix
value: /

3 changes: 3 additions & 0 deletions charts/olivetin/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ app.kubernetes.io/instance: {{ .Release.Name }}
{{- printf "%s:%s" .Values.image.repository .Values.image.tag -}}
{{- end -}}

{{- define "olivetin.validate" -}}
{{- end -}}

{{/* Data PVC claim name */}}
{{- define "olivetin.dataClaimName" -}}
{{- if .Values.persistence.existingClaim -}}
Expand Down
2 changes: 1 addition & 1 deletion charts/olivetin/tests/deployment_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ tests:
asserts:
- equal:
path: spec.template.spec.containers[0].image
value: "docker.io/jamesread/olivetin:3000.16.1"
value: "docker.io/jamesread/olivetin:3000.16.2"

- it: should mount writable config directory with read-only config file
template: templates/deployment.yaml
Expand Down
2 changes: 1 addition & 1 deletion charts/olivetin/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"type": "object",
"properties": {
"repository": { "type": "string", "default": "docker.io/jamesread/olivetin" },
"tag": { "type": "string", "default": "3000.15.0" },
"tag": { "type": "string", "default": "3000.16.2" },
"pullPolicy": { "type": "string", "enum": ["Always", "IfNotPresent", "Never"], "default": "IfNotPresent" }
}
},
Expand Down
2 changes: 1 addition & 1 deletion charts/olivetin/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ image:
# -- OliveTin container image
repository: docker.io/jamesread/olivetin
# -- Image tag
tag: "3000.16.1"
tag: "3000.16.2"
pullPolicy: IfNotPresent

imagePullSecrets: []
Expand Down