Comment 15 for bug 1846799

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to ansible-playbooks (master)

Reviewed: https://review.opendev.org/692611
Committed: https://git.openstack.org/cgit/starlingx/ansible-playbooks/commit/?id=d78cd10a52e07e0071efccf6566720f95f64725f
Submitter: Zuul
Branch: master

commit d78cd10a52e07e0071efccf6566720f95f64725f
Author: Angie Wang <email address hidden>
Date: Fri Nov 1 14:59:45 2019 -0400

    Update to push system images under the default registry namespaces

    Currently, if a system is installed with private registry, the
    image will be pushed to the local registry with the prefix of
    private registry url.

    For exmaple,
    k8s.gcr.io alternative registry => privateregistry.com/k8s.gcr.io

    k8s.gcr.io/kube-apiserver:v1.16.2
    => registry.local:9001/privateregistry.com/k8s.gcr.io/kube-apiserver:v1.16.2

    This commit updates to push system images to the original default
    registry namespace which doesn't include the private registry url.

    For example,
    k8s.gcr.io/kube-apiserver:v1.16.2
    => registry.local:9001/k8s.gcr.io/kube-apiserver:v1.16.2

    This update makes the system images download/pushing mechanism to
    align with the application images.

    Partial-Bug: 1846799
    Change-Id: If79c254dedbc7dab902364f76aa2109bb99474c7
    Signed-off-by: Angie Wang <email address hidden>