Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kolla Ansible
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Very Demiurge Very Mindful
Kolla Ansible
Commits
db4e2875
Commit
db4e2875
authored
8 years ago
by
Jenkins
Committed by
Gerrit Code Review
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Customizations for heat"
parents
753adbb2
e5788a06
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docker/heat/heat-api/Dockerfile.j2
+6
-10
6 additions, 10 deletions
docker/heat/heat-api/Dockerfile.j2
docker/heat/heat-base/Dockerfile.j2
+8
-11
8 additions, 11 deletions
docker/heat/heat-base/Dockerfile.j2
docker/heat/heat-engine/Dockerfile.j2
+13
-15
13 additions, 15 deletions
docker/heat/heat-engine/Dockerfile.j2
with
27 additions
and
36 deletions
docker/heat/heat-api/Dockerfile.j2
+
6
−
10
View file @
db4e2875
FROM {{ namespace }}/{{ image_prefix }}heat-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% import "macros.j2" as macros with context %}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install \
openstack-heat-api \
&& yum clean all
{% set heat_api_packages = ['openstack-heat-api'] %}
{% elif base_distro in ['ubuntu'] %}
RUN apt-get -y install --no-install-recommends \
heat-api \
&& apt-get clean
{% set heat_api_packages = ['heat-api'] %}
{% endif %}
RUN {{ macros.install_packages(heat_api_packages | customizable("packages")) }}
{% endif %}
COPY extend_start.sh /usr/local/bin/kolla_heat_extend_start
RUN chmod 755 /usr/local/bin/kolla_heat_extend_start
{% block heat_api_footer %}{% endblock %}
{% block footer %}{% endblock %}
{{ include_footer }}
USER heat
This diff is collapsed.
Click to expand it.
docker/heat/heat-base/Dockerfile.j2
+
8
−
11
View file @
db4e2875
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install \
openstack-heat-common \
&& yum clean all
{% import "macros.j2" as macros with context %}
{%
el
if
base_distro in ['ubuntu']
%}
{% if
install_type == 'binary'
%}
RUN apt-get -y install --no-install-recommends \
heat-common \
&& apt-get clean
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
{% set heat_base_packages = ['openstack-heat-common'] %}
{% elif base_distro in ['ubuntu'] %}
{% set heat_base_packages = ['heat-common'] %}
{% endif %}
RUN {{ macros.install_packages(heat_base_packages | customizable("packages")) }}
{% endif %}
{% elif install_type == 'source' %}
ADD heat-base-archive /heat-base-source
...
...
This diff is collapsed.
Click to expand it.
docker/heat/heat-engine/Dockerfile.j2
+
13
−
15
View file @
db4e2875
FROM {{ namespace }}/{{ image_prefix }}heat-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% import "macros.j2" as macros with context %}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
# TODO(SamYaple): until packaging is fixed, all of the python clients below are required
# http://pkgs.fedoraproject.org/cgit/openstack-heat.git/tree/openstack-heat.spec#n248
RUN yum -y install \
python-barbicanclient \
python-zaqarclient \
openstack-heat-engine \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get -y install --no-install-recommends \
heat-engine \
&& apt-get clean
{% set heat_engine_packages = [
'python-barbicanclient',
'python-zaqarclient',
'openstack-heat-engine'
] %}
{% elif base_distro in ['ubuntu'] %}
{% set heat_engine_packages = ['heat-engine'] %}
{% endif %}
RUN {{ macros.install_packages(heat_engine_packages | customizable("packages")) }}
{% endif %}
{% block heat_engine_footer %}{% endblock %}
{% block footer %}{% endblock %}
{{ include_footer }}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment