Skip to content

Commit 840f325

Browse files
committed
add repo namespace config
1 parent 89d6e2a commit 840f325

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

hosting/k8s/helm/templates/webapp.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ spec:
9191
value: "{{ .Values.config.appOrigin }}/otel"
9292
- name: DEPLOY_REGISTRY_HOST
9393
value: {{ include "trigger-v4.registry.host" . | quote }}
94+
- name: DEPLOY_REGISTRY_NAMESPACE
95+
value: {{ .Values.registry.repositoryNamespace | quote }}
9496
- name: OBJECT_STORE_BASE_URL
9597
value: {{ include "trigger-v4.minio.url" . | quote }}
9698
- name: GRACEFUL_SHUTDOWN_TIMEOUT

hosting/k8s/helm/values-production-example.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ minio:
103103

104104
# Production Registry
105105
registry:
106+
repositoryNamespace: "mycompany" # Docker repository namespace for deployed images, will be part of the image ref
106107
auth:
107108
username: "registry-user"
108109
password: "your-strong-registry-password"

hosting/k8s/helm/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,7 @@ minio:
408408
registry:
409409
enabled: false # EXPERIMENTAL - requires proper TLS setup. Use external: true instead.
410410
external: true
411+
repositoryNamespace: "trigger" # Docker repository namespace for deployed images, will be part of the image ref
411412
image:
412413
registry: docker.io
413414
repository: registry

0 commit comments

Comments
 (0)