-
Notifications
You must be signed in to change notification settings - Fork 276
ref: use binary flag to enable use of MeshRootCertificate #4871
Conversation
Signed-off-by: jaellio <[email protected]>
pkg/certificate/providers/config.go
Outdated
@@ -44,14 +44,16 @@ var getCA func(certificate.Issuer) (pem.RootCertificate, error) = func(i certifi | |||
// NewCertificateManager returns a new certificate manager, with an MRC compat client. | |||
// TODO(4713): Use an informer behind a feature flag. | |||
func NewCertificateManager(ctx context.Context, kubeClient kubernetes.Interface, kubeConfig *rest.Config, cfg configurator.Configurator, | |||
providerNamespace string, options Options, msgBroker *messaging.Broker, ic *informers.InformerCollection, checkInterval time.Duration) (*certificate.Manager, error) { | |||
if err := options.Validate(); err != nil { | |||
providerNamespace string, certOptions *CertProviderOptions, msgBroker *messaging.Broker, ic *informers.InformerCollection, checkInterval time.Duration) (*certificate.Manager, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: instead of fiddling with the options maybe have 2 functions:
NewCertificateManagerFromMRC
(takes options as a param, along with informers)
NewLegacyCertificateManager`. (doesn't take options, no ctx, etc)
Signed-off-by: jaellio <[email protected]>
Codecov Report
@@ Coverage Diff @@
## main #4871 +/- ##
==========================================
- Coverage 68.78% 68.71% -0.07%
==========================================
Files 220 220
Lines 15911 15908 -3
==========================================
- Hits 10944 10931 -13
- Misses 4915 4925 +10
Partials 52 52
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
5db50ff
to
bbbc59d
Compare
use MRC name for the issuer ID. Signed-off-by: jaellio <[email protected]>
bbbc59d
to
96df713
Compare
51aab9a
to
6afb77d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM pending CI
da93696
to
9227ca9
Compare
requirements to helm template Signed-off-by: jaellio <[email protected]>
9227ca9
to
d5b6645
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good overall, other than the comment I left.
charts/osm/values.yaml
Outdated
# -- Experimental values. Behavior is not supported. | ||
experimental: | ||
# -- Enable the MeshRootCertificate to configure the OSM certificate provider. | ||
enableMeshRootCertificate: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd rather have this as a part of the featureFlags spec, which is the way we have been exposing experimental features.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That makes sense to me. Should the flag be added to the MeshConfig?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only if you want it to be dynamically (post pod startup) configurable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i'd vote no on that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I originally hesitated to add it as a part of the featureFlag spec since I thought all values in that spec supported dynamic configuration. I've added enableMeshRootCertificate
to the featureFlag spec and did not include it in the MeshConfig
pkg/certificate/providers/config.go
Outdated
} | ||
return vaultClient, id, nil | ||
|
||
return vaultClient, mrc.Name, nil |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At this point, i would change the func signature to (issuer, error), and let the manager set the ID on it's own
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the signature to no longer return the issuer id.
- Allows manager to set issuer ID - Removes unnecessary newline Signed-off-by: jaellio <[email protected]>
8323bfb
to
b5855b0
Compare
Description:
Testing done:
Affected area:
Please answer the following questions with yes/no.
Does this change contain code from or inspired by another project? no
Is this a breaking change? no
Has documentation corresponding to this change been updated in the osm-docs repo (if applicable)? docs: add vault token secret reference osm-docs#407