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
c57642f6
Commit
c57642f6
authored
8 years ago
by
Jenkins
Committed by
Gerrit Code Review
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Remove no-cache option in build.py"
parents
aa7a338f
156abd6b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
kolla/common/config.py
+0
-2
0 additions, 2 deletions
kolla/common/config.py
kolla/image/build.py
+1
-1
1 addition, 1 deletion
kolla/image/build.py
with
1 addition
and
3 deletions
kolla/common/config.py
+
0
−
2
View file @
c57642f6
...
...
@@ -92,8 +92,6 @@ _CLI_OPTS = [
cfg
.
BoolOpt
(
'
cache
'
,
default
=
True
,
help
=
'
Use the Docker cache when building
'
,
),
cfg
.
BoolOpt
(
'
no-cache
'
,
default
=
False
,
help
=
'
Do not use the Docker cache when building
'
),
cfg
.
MultiOpt
(
'
profile
'
,
types
.
String
(),
short
=
'
p
'
,
help
=
(
'
Build a pre-defined set of images, see [profiles]
'
'
section in config. The default profiles are:
'
...
...
This diff is collapsed.
Click to expand it.
kolla/image/build.py
+
1
−
1
View file @
c57642f6
...
...
@@ -247,7 +247,7 @@ class BuildTask(DockerTask):
self
.
conf
=
conf
self
.
image
=
image
self
.
push_queue
=
push_queue
self
.
nocache
=
not
conf
.
cache
or
conf
.
no_cache
self
.
nocache
=
not
conf
.
cache
self
.
forcerm
=
not
conf
.
keep
self
.
logger
=
image
.
logger
...
...
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