Closed mnovak1 closed 1 year ago
This MR fixed the DeploymentConfig produced by ContainerBuilder: At present key and name are inverted:
DeploymentConfig
ContainerBuilder
- name: POSTGRESQL_ADMIN_PASSWORD valueFrom: configMapKeyRef: name: postgresql-admin-password key: postgresql - name: POSTGRESQL_PASSWORD valueFrom: configMapKeyRef: name: postgresql-password key: postgresql - name: POSTGRESQL_USER valueFrom: configMapKeyRef: name: postgresql-user key: postgresql
with this MR, the correct output is
- name: POSTGRESQL_ADMIN_PASSWORD valueFrom: configMapKeyRef: name: postgresql key: postgresql-admin-password - name: POSTGRESQL_PASSWORD valueFrom: configMapKeyRef: name: postgresql key: postgresql-password - name: POSTGRESQL_USER valueFrom: configMapKeyRef: name: postgresql key: postgresql-user
Similarly for secretKeyRef.
PRs: https://github.com/xtf-cz/xtf/pull/546 and https://github.com/xtf-cz/xtf/pull/547
Thanks @tommaso-borgato for solving this issue! :-)
This MR fixed the
DeploymentConfig
produced byContainerBuilder
: At present key and name are inverted:with this MR, the correct output is
Similarly for secretKeyRef.