Skip to content

Commit

Permalink
Merge pull request #14392 from michelle192837/warn
Browse files Browse the repository at this point in the history
Noting that jobs on bootstrap.py are not supported by oncall.
  • Loading branch information
k8s-ci-robot authored Sep 18, 2019
2 parents d32c23c + c6aeefa commit 1a958b0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions jenkins/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -1054,10 +1054,14 @@ def bootstrap(args):
call = lambda *a, **kw: _call(end, *a, **kw)
gsutil = GSUtil(call)

logging.warning('bootstrap.py is deprecated!\n'
'Please migrate your job to podutils!\n'
'https://github.com/kubernetes/test-infra/blob/master/prow/pod-utilities.md'
)
logging.warning(
'**************************************************************************\n'
'bootstrap.py is deprecated!\n'
'test-infra oncall does not support any job still using bootstrap.py.\n'
'Please migrate your job to podutils!\n'
'https://github.com/kubernetes/test-infra/blob/master/prow/pod-utilities.md\n'
'**************************************************************************'
)

if len(sys.argv) > 1:
logging.info('Args: %s', ' '.join(pipes.quote(a)
Expand Down

0 comments on commit 1a958b0

Please sign in to comment.