-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ovn: Use chart name in oci_image_registry secret (#1577)
The current values.yaml uses the service name to create separate secrets. However, helm-toolkit indexes into oci_image_registry using .Chart.Name and not $serviceName so the secrets are not used. Upstream: https://review.opendev.org/c/openstack/openstack-helm-infra/+/923779 Pushing this as a patch until we have it upstream (applied with tox -e sync-charts).
- Loading branch information
Showing
2 changed files
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/ovn/values.yaml b/ovn/values.yaml | ||
index 4171db47..2df5c38c 100644 | ||
--- a/ovn/values.yaml | ||
+++ b/ovn/values.yaml | ||
@@ -295,11 +295,7 @@ pod: | ||
|
||
secrets: | ||
oci_image_registry: | ||
- ovn_ovsdb_nb: ovn-ovsdb-nb-oci-image-registry-key | ||
- ovn_ovsdb_sb: ovn-ovsdb-sb-oci-image-registry-key | ||
- ovn_northd: ovn-northd-oci-image-registry-key | ||
- ovn_controller: ovn-controller-oci-image-registry-key | ||
- ovn_controller_gw: ovn-controller-gw-oci-image-registry-key | ||
+ ovn: ovn-oci-image-registry-key |