Description of problem: Deployer/Builder pods are kind of run-once pod, oc get pod <deployer/builder pod> -o yaml should have activeDeadlineSeconds by default. But builder pod does not have. Version-Release number of selected component (if applicable): oc v1.1.3-267-g0842757 kubernetes v1.2.0-alpha.7-703-gbc4550d How reproducible: Alwyas Steps to Reproduce: 1. Start openshift with default configuration: 1> $ openshift start --public-master=https://<master>:8443 --write-config='openshift.local.config' 2> $ openshift start --master-config='openshift.local.config/master/master-config.yaml' --node-config='openshift.local.config/<node dir>/node-config.yaml' 3> Deploy openshift registry 2. In CLI side, oc login and create project 3. Create new app $ oc new-app -f origin/examples/sample-app/application-template-stibuild.json 4. Before deployer pod completes, check activeDeadlineSeconds of them $ oc get pod database-1-deploy ruby-sample-build-1-build -o yaml Actual results: 4. Only deployer pod has but builder pod does no have: spec: activeDeadlineSeconds: 21600 Expected results: 4. Both pods should have activeDeadlineSeconds Additional info:
Xingxing Xia I think this is a misunderstanding of our conversation on Trello. The build pods do not have an activeDeadlineSeconds value by default. However, when you enable the plugin and configure a global override value, the build pod should get that value. I tested that case and that works as expected.
Cesar Wong, got it. Then this is NOTA.