mirror of
https://github.com/ansible/awx.git
synced 2026-06-24 16:17:51 -02:30
migration for container options for EE model
Co-authored-by: Shane McDonald <me@shanemcd.com>
This commit is contained in:
@@ -15,7 +15,7 @@ class ExecutionEnvironment(CommonModel):
|
||||
PULL_CHOICES = [
|
||||
('always', _("Always pull container before running.")),
|
||||
('missing', _("No pull option has been selected")),
|
||||
('never', _("Never cull container before running"))
|
||||
('never', _("Never pull container before running"))
|
||||
]
|
||||
|
||||
organization = models.ForeignKey(
|
||||
@@ -44,6 +44,7 @@ class ExecutionEnvironment(CommonModel):
|
||||
container_options = models.CharField(
|
||||
max_length=1024,
|
||||
choices=PULL_CHOICES,
|
||||
default='missing',
|
||||
help_text=_('Pull image before running?'),
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user