72a3fb3c37
These are not considered "examples", per https://github.com/kubernetes/kubernetes/pull/17345#issuecomment-197153744
8 lines
156 B
Python
Executable File
8 lines
156 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# Just prints standard out and sleeps for 10 seconds.
|
|
import sys
|
|
import time
|
|
print("Processing " + sys.stdin.lines())
|
|
time.sleep(10)
|