Hide Forgot
versions: docker.io/openshift/jenkins-1-centos7 688c1f456664 OpenShift Pipeline Jenkins Plugin 1.0.26 Description of problem: Authorization Token option displays dot when inputing token in build step of jenkins How reproducible: Always steps: 1. Create jenkins $ oc new-project test $oc policy add-role-to-user admin system:serviceaccount:test:jenkins -n test $oc import-image jenkins --from='docker.io/openshift/jenkins-1-centos7' --confirm=true --insecure=true --all=true $oc new-app -f https://raw.githubusercontent.com/openshift/origin/master/examples/jenkins/jenkins-ephemeral-template.json # change namespace to test 2. go to jenkins website and configure build step , for example "trigger openshift build" 3. input token in Authorization Token options, display dot,not actual words Actual results: input token in Authorization Token options, display dot Expected results: should display what you inputs attional info: us card tells jenkins verison is f60aadf3c879,but we pulled latest image is 688c1f456664
Yep, this is on purpose - Justin made a change to have the auth token field act as a password field, where the characters become dots. Seemed like an reasonable improvement to me. But we can certainly debate here if necessary.
@wewang, the Jenkins UI now treats the OpenShift authorization tokens as typical HTML password fields. This protects the important credential from being displayed openly. It should still contain precisely what you enter, but the value will be visibly masked.
@Justin Pierce,got it,thanks for explain, in future the value will be masked with dot.