-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: nvidia gpu operator and ca signed tls certs (#39)
Co-authored-by: Mark Van Aken <[email protected]> ## Features: - add NVIDIA GPU operator Zarf package - default to containerd configuration for NVIDIA runtime - updates, additions, and improvements to README and Docs - add CA cert creation and machine-level injection - add ability to provide CA-signed TLS certs for different base domains ## Dependencies: - upgrade to UDS Core 0.23.0 - upgrade to LFAI 0.9.1 ## Fixes: - fix RKE2 CoreDNS rewrites - fix namespace and values organization - fix DOMAIN variable in tasks and CoreDNS override - fix LPP config and docs for multi-node, HA deployments ## Chores: - removed Pepr exemptions race-condition workaround - removed Supabase studio ConfigMap workaround
- Loading branch information
1 parent
b4cbbb7
commit 3b8ec24
Showing
59 changed files
with
2,212 additions
and
502 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[req] | ||
distinguished_name = req_distinguished_name | ||
x509_extensions = v3_ca | ||
prompt = no | ||
default_bits = 4096 | ||
default_md = sha256 | ||
|
||
[req_distinguished_name] | ||
CN = UDS RKE2 Root CA | ||
O = Defense Unicorns | ||
OU = UDS RKE2 Product Team | ||
|
||
[v3_ca] | ||
subjectKeyIdentifier = hash | ||
authorityKeyIdentifier = keyid:always,issuer | ||
basicConstraints = critical, CA:true, pathlen:0 | ||
keyUsage = critical, digitalSignature, cRLSign, keyCertSign |
Oops, something went wrong.