File tree Expand file tree Collapse file tree 7 files changed +15
-0
lines changed
Expand file tree Collapse file tree 7 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 6060- Implement ability to add certificates to fluent-bit by mounting a fluent-bit-certs secret
6161 (PR[ #4812 ] ( https://github.com/scality/metalk8s/pull/4812 ) )
6262
63+ - Add x509 extensions 'subjectKeyIdentifier' and 'authorityKeyIdentifier' to certificates
64+ (PR[ #4836 ] ( https://github.com/scality/metalk8s/pull/4836 ) )
65+
6366### Bug Fixes
6467
6568- Fix a bug where part of the upgrade process would silently be skipped
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ Generate dex CA certificate:
2727 - CN : dex- ca
2828 - keyUsage: " critical digitalSignature, keyEncipherment, keyCertSign"
2929 - basicConstraints: " critical CA:true"
30+ - subjectKeyIdentifier: hash
31+ - authorityKeyIdentifier: keyid,issuer:always
3032 - days_valid: {{ dex.ca.cert.days_valid }}
3133 - user: root
3234 - group: root
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ Generate Ingress CA certificate:
2727 - CN : ingress- ca
2828 - keyUsage: " critical digitalSignature, keyEncipherment, keyCertSign"
2929 - basicConstraints: " critical CA:true"
30+ - subjectKeyIdentifier: hash
31+ - authorityKeyIdentifier: keyid,issuer:always
3032 - days_valid: {{ nginx_ingress.ca.cert.days_valid }}
3133 - user: root
3234 - group: root
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ Generate backup server CA certificate:
2727 - CN : backup- server- ca
2828 - keyUsage: " critical digitalSignature, keyEncipherment, keyCertSign"
2929 - basicConstraints: " critical CA:true"
30+ - subjectKeyIdentifier: hash
31+ - authorityKeyIdentifier: keyid,issuer:always
3032 - days_valid: {{ backup_server.ca.cert.days_valid }}
3133 - user: root
3234 - group: root
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ Generate etcd CA certificate:
2727 - CN : etcd- ca
2828 - keyUsage: " critical digitalSignature, keyEncipherment, keyCertSign"
2929 - basicConstraints: " critical CA:true"
30+ - subjectKeyIdentifier: hash
31+ - authorityKeyIdentifier: keyid,issuer:always
3032 - days_valid: {{ etcd.ca.cert.days_valid }}
3133 - user: root
3234 - group: root
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ Generate front proxy CA certificate:
2727 - CN : front- proxy- ca
2828 - keyUsage: " critical digitalSignature, keyEncipherment, keyCertSign"
2929 - basicConstraints: " critical CA:true"
30+ - subjectKeyIdentifier: hash
31+ - authorityKeyIdentifier: keyid,issuer:always
3032 - days_valid: {{ front_proxy.ca.cert.days_valid }}
3133 - user: root
3234 - group: root
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ Generate CA certificate:
2727 - CN : kubernetes
2828 - keyUsage: " critical digitalSignature, keyEncipherment, keyCertSign"
2929 - basicConstraints: " critical CA:true"
30+ - subjectKeyIdentifier: hash
31+ - authorityKeyIdentifier: keyid,issuer:always
3032 - days_valid: {{ ca.cert.days_valid }}
3133 - user: root
3234 - group: root
You can’t perform that action at this time.
0 commit comments