b1df493d43ffc59b67f9ea0e0bf4c0bca4279fe0
This new argument will allow special ceph variables to be added to the
template file overcloud_containers.yaml.j2. For example if the
following existed in the template file:
{% set ceph_namespace=ceph_namespace or "ceph" %}
{% set ceph_daemon=ceph_daemon or "daemon" %}
{% set ceph_tag=ceph_tag or "tag-build-master-jewel-centos-7" %}
- imagename: "{{ ceph_namespace }}/{{ ceph_daemon }}:{{ ceph_tag }}"
Then the --set argument will allow making substitutions on these
values, for example:
openstack overcloud container image prepare \
--namespace tripleoupstream \
--tag latest \
--images-file overcloud_containers.yaml \
--set ceph_namespace=myceph \
--set ceph_tag=latest \
--env-file $HOME/docker_registry.yaml
Change-Id: Ie12dbab0f4d7f20d14a764abb9095fd8b326c700
Team and repository tags
tripleoclient
tripleoclient is an OpenStackClient (OSC) plugin implementation that implements commands useful for TripleO and the install and management of both an undercloud and an overcloud.
See the TripleO Documentation for details on using tripleoclient.
Description