openshift-bootstrap-controller.yaml 2.2 KB

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