fix(helm): Remove image tag overide
This commit is contained in:
@@ -139,9 +139,10 @@ mcp:
|
|||||||
| Parameter | Description | Default |
|
| Parameter | Description | Default |
|
||||||
|-----------|-------------|---------|
|
|-----------|-------------|---------|
|
||||||
| `image.repository` | Container image repository | `ghcr.io/cbcoutinho/nextcloud-mcp-server` |
|
| `image.repository` | Container image repository | `ghcr.io/cbcoutinho/nextcloud-mcp-server` |
|
||||||
| `image.tag` | Container image tag | `""` (uses chart appVersion) |
|
|
||||||
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
|
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
|
||||||
|
|
||||||
|
**Note:** Image tag is automatically set to the chart's `appVersion` and cannot be overridden.
|
||||||
|
|
||||||
#### Resources
|
#### Resources
|
||||||
|
|
||||||
| Parameter | Description | Default |
|
| Parameter | Description | Default |
|
||||||
@@ -390,7 +391,6 @@ helm upgrade nextcloud-mcp ./helm/nextcloud-mcp-server -f custom-values.yaml
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
helm upgrade nextcloud-mcp ./helm/nextcloud-mcp-server \
|
helm upgrade nextcloud-mcp ./helm/nextcloud-mcp-server \
|
||||||
--set image.tag=0.21.0 \
|
|
||||||
--set resources.limits.memory=1Gi
|
--set resources.limits.memory=1Gi
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -102,10 +102,10 @@ Return the MCP server port
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
{{/*
|
{{/*
|
||||||
Return the image tag
|
Return the image tag (always uses chart appVersion)
|
||||||
*/}}
|
*/}}
|
||||||
{{- define "nextcloud-mcp-server.imageTag" -}}
|
{{- define "nextcloud-mcp-server.imageTag" -}}
|
||||||
{{- .Values.image.tag | default .Chart.AppVersion }}
|
{{- .Chart.AppVersion }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
{{/*
|
{{/*
|
||||||
|
|||||||
@@ -8,8 +8,7 @@ replicaCount: 1
|
|||||||
image:
|
image:
|
||||||
repository: ghcr.io/cbcoutinho/nextcloud-mcp-server
|
repository: ghcr.io/cbcoutinho/nextcloud-mcp-server
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
# Overrides the image tag whose default is the chart appVersion.
|
# Image tag is automatically set to chart appVersion
|
||||||
tag: "@sha256:59f8a9e12e879094936362417b95a74377029f49f8fe3985606a7f45fe7c31f9"
|
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
|
|||||||
Reference in New Issue
Block a user