-
-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TrustStore CRD #557
base: main
Are you sure you want to change the base?
TrustStore CRD #557
Conversation
Signed-off-by: Marc-Antoine Perennou <[email protected]>
Signed-off-by: Marc-Antoine Perennou <[email protected]>
Signed-off-by: Marc-Antoine Perennou <[email protected]>
Signed-off-by: Marc-Antoine Perennou <[email protected]>
Signed-off-by: Marc-Antoine Perennou <[email protected]>
Signed-off-by: Marc-Antoine Perennou <[email protected]>
Signed-off-by: Marc-Antoine Perennou <[email protected]>
Drop ring dependency and update RustCrypto
Signed-off-by: Marc-Antoine Perennou <[email protected]>
Signed-off-by: Marc-Antoine Perennou <[email protected]>
Signed-off-by: Marc-Antoine Perennou <[email protected]>
Signed-off-by: Marc-Antoine Perennou <[email protected]>
Signed-off-by: Marc-Antoine Perennou <[email protected]>
Signed-off-by: Marc-Antoine Perennou <[email protected]>
Signed-off-by: Marc-Antoine Perennou <[email protected]>
Signed-off-by: Marc-Antoine Perennou <[email protected]>
update crypto dependencies
hjiayz seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
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.
The following questions are open:
- Allow customers to request CA cert (e.g. for external clients) #410 (comment)
- https://github.com/stackabletech/decisions/issues/42#issuecomment-2754317110
I did not review the complete p12 directory, but only the changes to v0.6.3.
@@ -17,3 +17,4 @@ spec: | |||
pod: {} | |||
# or... | |||
name: my-namespace | |||
trustStoreConfigMapName: tls-ca # <4> |
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.
This example is used as introduction to SecretClasses, so I would not show special cases. Using k8sSearch for trust stores is not the main use case. I would leave it out. If not, then I would at least mention that this property is optional.
@@ -426,14 +435,16 @@ spec: | |||
pod: {} | |||
# or... | |||
name: my-namespace | |||
trustStoreConfigMapName: tls-ca # <4> |
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.
trustStoreConfigMapName: tls-ca # <4> | |
trustStoreConfigMapName: tls-ca |
NOTE: Make sure to have a procedure for updating the retrieved certificates. The Secret Operator will automatically rotate | ||
the xref:secretclass.adoc#backend-autotls[autoTls] certificate authority as needed, but all trust roots will require | ||
some form of update occasionally. |
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.
The style guide proposes one sentence per line (https://docs.stackable.tech/home/nightly/contributor/docs/style-guide/#_overall_structure_asciidoc_recommended_practices).
}; | ||
|
||
const CONTROLLER_NAME: &str = "truststore"; | ||
const FULL_CONTROLLER_NAME: &str = "truststore.secrets.stackable.tech"; |
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: In other operators, const_format
is used to avoid duplication (concatcp!(CONTROLLER_NAME, ".", OPERATOR_NAME)
).
async move { | ||
report_controller_reconciled( | ||
&event_recorder, | ||
&format!("{CONTROLLER_NAME}.{OPERATOR_NAME}"), |
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: Use FULL_CONTROLLER_NAME
instead.
} | ||
}, | ||
) | ||
// TODO: merge this into the other ConfigMap watch |
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: Just remove this comment if you do not plan to implement it.
// TODO | ||
None |
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.
Matching each error (and returning None) would be better, so that future errors with secondary objects are not forgotten.
Description
Fixes #410.
rust/p12
is imported from hjiayz/p12@9983420 (fff63d1), can't really do much about CLA failures from before that point (and beyond that I've kept the changes fairly minimal to enable our use case). Discussed at https://stackable-workspace.slack.com/archives/C033A863YPL/p1741869321744189.Definition of Done Checklist
Author
Reviewer
Acceptance