Skip to content

Commit 4b9f474

Browse files
committed
fix(helm): add global.security.allowInsecureImages for bitnamilegacy images
The new Bitnami Helm charts (postgresql 12.1.5, zookeeper 13.8.7, etc.) include image signature verification that rejects non-standard images like bitnamilegacy. This causes Helm install to fail with: ERROR: Original containers have been substituted for unrecognized ones. Unrecognized images: docker.io/bitnamilegacy/zookeeper:3.9.3-debian-12-r21 Setting global.security.allowInsecureImages: true allows the use of bitnamilegacy images with the newer chart versions. Reference: bitnami/charts#30850
1 parent 17f3f8d commit 4b9f474

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

deploy/kubernetes/dolphinscheduler/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Please refer to the [Quick Start in Kubernetes](../../../docs/docs/en/guide/inst
1212

1313
| Key | Type | Default | Description |
1414
|-----|------|---------|-------------|
15+
| global.security.allowInsecureImages | bool | `true` | Allow using non-standard container images (required for bitnamilegacy images). This is required because the new Bitnami charts verify image signatures. |
1516
| alert.affinity | object | `{}` | Affinity is a group of affinity scheduling rules. If specified, the pod's scheduling constraints. More info: [node-affinity](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity) |
1617
| alert.annotations | object | `{}` | You can use annotations to attach arbitrary non-identifying metadata to objects. Clients such as tools and libraries can retrieve this metadata. |
1718
| alert.customizedConfig | object | `{}` | configure aligned with https://github.com/apache/dolphinscheduler/blob/dev/dolphinscheduler-alert/dolphinscheduler-alert-server/src/main/resources/application.yaml |

deploy/kubernetes/dolphinscheduler/values.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
# This is a YAML-formatted file.
2020
# Declare variables to be passed into your templates.
2121

22+
# -- Global settings for Bitnami subcharts
23+
global:
24+
security:
25+
# -- Allow using non-standard container images (required for bitnamilegacy images)
26+
allowInsecureImages: true
27+
2228
# -- World time and date for cities in all time zones
2329
timezone: "Asia/Shanghai"
2430

0 commit comments

Comments
 (0)