openshift-bootstrap-controller.yaml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. kind: StatefulSet
  2. apiVersion: apps/v1beta1
  3. metadata:
  4. name: bootstrap-autoapprover
  5. namespace: openshift-infra
  6. spec:
  7. updateStrategy:
  8. type: RollingUpdate
  9. template:
  10. metadata:
  11. labels:
  12. app: bootstrap-autoapprover
  13. spec:
  14. serviceAccountName: bootstrap-autoapprover
  15. terminationGracePeriodSeconds: 1
  16. containers:
  17. - name: signer
  18. image: openshift/node:v3.7.0-rc.0
  19. command:
  20. - /bin/bash
  21. - -c
  22. args:
  23. - |
  24. #!/bin/bash
  25. set -o errexit
  26. set -o nounset
  27. set -o pipefail
  28. unset KUBECONFIG
  29. cat <<SCRIPT > /tmp/signer
  30. #!/bin/bash
  31. #
  32. # It will approve any CSR that is not approved yet, and delete any CSR that expired more than 60 seconds
  33. # ago.
  34. #
  35. set -o errexit
  36. set -o nounset
  37. set -o pipefail
  38. name=\${1}
  39. condition=\${2}
  40. certificate=\${3}
  41. username=\${4}
  42. # auto approve
  43. if [[ -z "\${condition}" && ("\${username}" == "system:serviceaccount:openshift-infra:node-bootstrapper" || "\${username}" == "system:node:"* ) ]]; then
  44. oc adm certificate approve "\${name}"
  45. exit 0
  46. fi
  47. # check certificate age
  48. if [[ -n "\${certificate}" ]]; then
  49. text="\$( echo "\${certificate}" | base64 -d - )"
  50. if ! echo "\${text}" | openssl x509 -noout; then
  51. echo "error: Unable to parse certificate" 2>&1
  52. exit 1
  53. fi
  54. if ! echo "\${text}" | openssl x509 -checkend -60 > /dev/null; then
  55. echo "Certificate is expired, deleting"
  56. oc delete csr "\${name}"
  57. fi
  58. exit 0
  59. fi
  60. SCRIPT
  61. chmod u+x /tmp/signer
  62. exec oc observe csr --maximum-errors=1 --resync-period=10m -a '{.status.conditions[*].type}' -a '{.status.certificate}' -a '{.spec.username}' -- /tmp/signer