-
Notifications
You must be signed in to change notification settings - Fork 75
Description
I've connected cert-manager to a remote instance of Vault, where Vault is acting as my certificate issuer. However, I have some restraints generating certificates from this CA. Specifically i need to set a number of subject fields:
- subject.localities
- subject.organizationalUnits
- subject.organization
- subject.provinces
- subject.countries
There does not seem to be a way to set these for the certificates that istio-csr is attempting to create. My istio-csr deployment is failing because it cannot issue the initial certificate because Vault will not issue certificates with wildcard values for those subject fields above.
Is there anyway for me to set these values? there does not seem to be in the istio-csr helm chart...
If there is not way to do this I suppose I will have to write a custom mutating webhook to handle this but would like to avoid doing so.
Thanks.