Skip to content
This repository was archived by the owner on Mar 23, 2019. It is now read-only.

Commit e20826f

Browse files
committed
improve(bakery) support for custom organization providing prebaked conductor images
1 parent 724552c commit e20826f

File tree

5 files changed

+30
-23
lines changed

5 files changed

+30
-23
lines changed

bakery.py

+9-6
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,15 @@
1515

1616
version = container.__version__
1717

18-
BASE_DISTRO = os.getenv('BASE_DISTRO');
18+
BASE_DISTRO = os.getenv('BASE_DISTRO')
19+
CONDUCTOR_PROVIDER = os.getenv('CONDUCTOR_PROVIDER') or 'ansible'
1920

2021
if BASE_DISTRO:
21-
subprocess.check_call(['python', 'setup.py', 'prebake', '--distros', BASE_DISTRO])
22+
print "building selected prebake distros %s for organization %s" % (BASE_DISTRO, CONDUCTOR_PROVIDER)
23+
subprocess.check_call(['python', 'setup.py', 'prebake', '--distros', BASE_DISTRO, '--conductor-provider', CONDUCTOR_PROVIDER])
2224
else:
23-
subprocess.check_call(['python', 'setup.py', 'prebake'])
25+
print "building prebake distros for organization %s" % (CONDUCTOR_PROVIDER)
26+
subprocess.check_call(['python', 'setup.py', 'prebake', '--conductor-provider', CONDUCTOR_PROVIDER])
2427

2528
for distro in ([BASE_DISTRO] if BASE_DISTRO else PREBAKED_DISTROS):
2629
print('Uploading %s...' % distro)
@@ -30,9 +33,9 @@
3033
'ansible/container-conductor-%s:%s' % (distro_key, version)])
3134
subprocess.check_call(['docker', 'tag',
3235
'container-conductor-%s:%s' % (distro_key, version),
33-
'ansible/container-conductor-%s:%s' % (distro_key, version)])
36+
'%s/container-conductor-%s:%s' % (CONDUCTOR_PROVIDER, distro_key, version)])
3437
print(['docker', 'push',
35-
'ansible/container-conductor-%s:%s' % (distro_key, version)])
38+
'%s/container-conductor-%s:%s' % (CONDUCTOR_PROVIDER, distro_key, version)])
3639
subprocess.check_call(['docker', 'push',
37-
'ansible/container-conductor-%s:%s' % (distro_key, version)])
40+
'%s/container-conductor-%s:%s' % (CONDUCTOR_PROVIDER, distro_key, version)])
3841

container/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
from __future__ import absolute_import
33

4-
__version__ = '0.9.3rc0'
4+
__version__ = '0.9.3rc2'
55

66
import os
77
import functools

container/core.py

+11-6
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def hostcmd_init(base_path, project=None, force=False, config_file=None, **kwarg
127127
logger.info('Ansible Container initialized.')
128128

129129
@host_only
130-
def hostcmd_prebake(distros, debug=False, cache=True, ignore_errors=False):
130+
def hostcmd_prebake(distros, debug=False, cache=True, ignore_errors=False, conductor_provider='ansible'):
131131
logger.info('Prebaking distros...', distros=distros, cache=cache)
132132
engine_obj = load_engine(['BUILD_CONDUCTOR'], 'docker', os.getcwd(), {}, debug=debug)
133133
from .docker.engine import PREBAKED_DISTROS
@@ -137,7 +137,9 @@ def hostcmd_prebake(distros, debug=False, cache=True, ignore_errors=False):
137137
engine_obj.build_conductor_image(os.getcwd(),
138138
distro,
139139
prebaking=True,
140-
cache=cache)
140+
cache=cache,
141+
conductor_provider=conductor_provider
142+
)
141143
except Exception as e:
142144
logger.exception('Failure building prebaked image for %s', distro)
143145
if ignore_errors:
@@ -176,12 +178,13 @@ def hostcmd_build(base_path, project_name, engine_name, vars_files=None, config_
176178
env_vars = environment
177179
if kwargs.get('with_variables'):
178180
env_vars += kwargs['with_variables']
179-
181+
config_conductor_provider = config.get('settings', {}).get('conductor_provider', "ansible")
180182
engine_obj.build_conductor_image(
181183
base_path,
182184
config.conductor_base,
183185
cache=conductor_cache,
184-
environment=env_vars
186+
environment=env_vars,
187+
conductor_provider=config_conductor_provider
185188
)
186189
else:
187190
logger.warning(u'%s does not support building the Conductor image.',
@@ -555,9 +558,11 @@ def set_path_ownership(path, uid, gid):
555558
os.chown(path, uid, gid)
556559
for root, dirs, files in os.walk(path):
557560
for d in dirs:
558-
os.chown(os.path.join(root, d), uid, gid)
561+
if not(os.path.islink(os.path.join(root, d))):
562+
os.chown(os.path.join(root, d), uid, gid)
559563
for f in files:
560-
os.chown(os.path.join(root, f), uid, gid)
564+
if not(os.path.islink(os.path.join(root, f))):
565+
os.chown(os.path.join(root, f), uid, gid)
561566

562567

563568
@conductor_only

container/docker/engine.py

+5-10
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
'ubuntu:precise': ['ubuntu:12.04'],
8888
'ubuntu:trusty': ['ubuntu:14.04'],
8989
'ubuntu:xenial': ['ubuntu:16.04'],
90-
'ubuntu:zesty': ['ubuntu:17.04'],
90+
# 'ubuntu:zesty': ['ubuntu:17.04'],
9191
'alpine:3.5': ['alpine:latest'],
9292
'alpine:3.4': []
9393
}
@@ -989,7 +989,7 @@ def _prepare_prebake_manifest(base_path, base_image, temp_dir, tarball):
989989
tarball.add(os.path.join(req_yml_dir, 'conductor-requirements.yml'),
990990
arcname='container-src/conductor-build/conductor-requirements.yml')
991991

992-
def _prepare_conductor_manifest(self, base_path, base_image, temp_dir, tarball):
992+
def _prepare_conductor_manifest(self, base_path, base_image, temp_dir, tarball, conductor_provider="ansible"):
993993
source_dir = os.path.normpath(base_path)
994994

995995
for filename in ['ansible.cfg', 'ansible-requirements.txt',
@@ -1013,7 +1013,7 @@ def _prepare_conductor_manifest(self, base_path, base_image, temp_dir, tarball):
10131013
container.__version__
10141014
)
10151015
if not self.get_image_id_by_tag(conductor_base):
1016-
conductor_base = 'ansible/%s' % conductor_base
1016+
conductor_base = '%s/%s' % (conductor_provider, conductor_base)
10171017
else:
10181018
conductor_base = 'container-conductor-%s:%s' % (
10191019
base_image.replace(':', '-'),
@@ -1042,7 +1042,7 @@ def _prepare_conductor_manifest(self, base_path, base_image, temp_dir, tarball):
10421042

10431043
@log_runs
10441044
@host_only
1045-
def build_conductor_image(self, base_path, base_image, prebaking=False, cache=True, environment=None):
1045+
def build_conductor_image(self, base_path, base_image, prebaking=False, cache=True, environment=None, conductor_provider="ansible"):
10461046
if environment is None:
10471047
environment = []
10481048
with utils.make_temp_dir() as temp_dir:
@@ -1098,11 +1098,6 @@ def build_conductor_image(self, base_path, base_image, prebaking=False, cache=Tr
10981098
tarball.add(os.path.join(temp_dir, 'Dockerfile'),
10991099
arcname='Dockerfile')
11001100

1101-
#for context_file in ['builder.sh', 'ansible-container-inventory.py',
1102-
# 'ansible.cfg', 'wait_on_host.py', 'ac_galaxy.py']:
1103-
# tarball.add(os.path.join(TEMPLATES_PATH, context_file),
1104-
# arcname=context_file)
1105-
11061101
if prebaking:
11071102
self.client.images.pull(*base_image.split(':', 1))
11081103
self._prepare_prebake_manifest(base_path, base_image, temp_dir,
@@ -1111,7 +1106,7 @@ def build_conductor_image(self, base_path, base_image, prebaking=False, cache=Tr
11111106
container.__version__)
11121107
else:
11131108
self._prepare_conductor_manifest(base_path, base_image, temp_dir,
1114-
tarball)
1109+
tarball, conductor_provider)
11151110
tag = self.image_name_for_service('conductor')
11161111
logger.debug('Context manifest:')
11171112
for tarinfo_obj in tarball.getmembers():

container/templates/init/.dockerignore.j2

+4
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@
55
ansible-deployment/
66
*.retry
77
.DS_Store
8+
p-env
9+
venv
10+
.p-env
11+
.venv

0 commit comments

Comments
 (0)