Checked with atomic-openshift-3.2.1.3-1.git.0.dfa4ad6.el7, and all the secrets is ready soon after project is ready. $ for i in {1..10}; do oc new-project project$i;oc get sa; done Now using project "project1" on server "https://openshift-141.lab.eng.nay.redhat.com:8443". You can add applications to this project with the 'new-app' command. For example, try: $ oc new-app centos/ruby-22-centos7~https://github.com/openshift/ruby-hello-world.git to build a new hello-world application in Ruby. NAME SECRETS AGE builder 2 52s default 2 52s deployer 2 52s Now using project "project2" on server "https://openshift-141.lab.eng.nay.redhat.com:8443". You can add applications to this project with the 'new-app' command. For example, try: $ oc new-app centos/ruby-22-centos7~https://github.com/openshift/ruby-hello-world.git to build a new hello-world application in Ruby. NAME SECRETS AGE builder 2 51s default 2 51s deployer 2 51s Now using project "project3" on server "https://openshift-141.lab.eng.nay.redhat.com:8443". You can add applications to this project with the 'new-app' command. For example, try: $ oc new-app centos/ruby-22-centos7~https://github.com/openshift/ruby-hello-world.git to build a new hello-world application in Ruby. NAME SECRETS AGE builder 2 51s default 2 51s deployer 2 51s Now using project "project4" on server "https://openshift-141.lab.eng.nay.redhat.com:8443". You can add applications to this project with the 'new-app' command. For example, try: $ oc new-app centos/ruby-22-centos7~https://github.com/openshift/ruby-hello-world.git to build a new hello-world application in Ruby. NAME SECRETS AGE builder 2 51s default 2 51s deployer 2 51s Now using project "project5" on server "https://openshift-141.lab.eng.nay.redhat.com:8443". You can add applications to this project with the 'new-app' command. For example, try: $ oc new-app centos/ruby-22-centos7~https://github.com/openshift/ruby-hello-world.git to build a new hello-world application in Ruby. NAME SECRETS AGE builder 2 51s default 2 52s deployer 2 51s Now using project "project6" on server "https://openshift-141.lab.eng.nay.redhat.com:8443". You can add applications to this project with the 'new-app' command. For example, try: $ oc new-app centos/ruby-22-centos7~https://github.com/openshift/ruby-hello-world.git to build a new hello-world application in Ruby. NAME SECRETS AGE builder 2 51s default 2 51s deployer 2 51s Now using project "project7" on server "https://openshift-141.lab.eng.nay.redhat.com:8443". You can add applications to this project with the 'new-app' command. For example, try: $ oc new-app centos/ruby-22-centos7~https://github.com/openshift/ruby-hello-world.git to build a new hello-world application in Ruby. NAME SECRETS AGE builder 2 52s default 2 52s deployer 2 52s Now using project "project8" on server "https://openshift-141.lab.eng.nay.redhat.com:8443". You can add applications to this project with the 'new-app' command. For example, try: $ oc new-app centos/ruby-22-centos7~https://github.com/openshift/ruby-hello-world.git to build a new hello-world application in Ruby. NAME SECRETS AGE builder 2 51s default 2 51s deployer 2 51s Now using project "project9" on server "https://openshift-141.lab.eng.nay.redhat.com:8443". You can add applications to this project with the 'new-app' command. For example, try: $ oc new-app centos/ruby-22-centos7~https://github.com/openshift/ruby-hello-world.git to build a new hello-world application in Ruby. NAME SECRETS AGE builder 2 51s default 2 51s deployer 2 51s Now using project "project10" on server "https://openshift-141.lab.eng.nay.redhat.com:8443". You can add applications to this project with the 'new-app' command. For example, try: $ oc new-app centos/ruby-22-centos7~https://github.com/openshift/ruby-hello-world.git to build a new hello-world application in Ruby. NAME SECRETS AGE builder 2 51s default 2 51s deployer 2 51s
Also checked with sa created by manual, $ for i in {1..50}; do oc create serviceaccount sa$i > /dev/null & done $ oc get secrets|grep -i token | awk '{print $1}'|awk -F- '{print $1}'|uniq -c|awk '{print $1}' |uniq -c 53 2 $ oc get secrets|grep -i dockercfg | awk '{print $1}'|awk -F- '{print $1}'|uniq -c|awk '{print $1}' |uniq -c 53 1 And delete secrets to check if the secrets will be come back. for i in `oc get secrets --no-headers|awk '{print $1}'`; do oc delete secrets $i > /dev/null & done $ oc get secrets|grep -i token | awk '{print $1}'|awk -F- '{print $1}'|uniq -c|awk '{print $1}' |uniq -c 53 2 $ oc get secrets|grep -i dockercfg | awk '{print $1}'|awk -F- '{print $1}'|uniq -c|awk '{print $1}' |uniq -c 53 1
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2016:1383