mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 13:46:59 +01:00
kubernetes-ca role refactoring
This commit is contained in:
parent
126143e7e1
commit
a57445c364
15 changed files with 137 additions and 430 deletions
16
roles/kubernetes-ca/templates/csr.json.j2
Normal file
16
roles/kubernetes-ca/templates/csr.json.j2
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"CN": "{{item.cn}}",
|
||||
"key": {
|
||||
"algo": "{{item.key_algo}}",
|
||||
"size": {{item.key_size}}
|
||||
},
|
||||
"names": [
|
||||
{
|
||||
"C": "{{item.names_c}}",
|
||||
"L": "{{item.names_l}}",
|
||||
"O": "{{item.names_o}}",
|
||||
"OU": "{{item.names_ou}}",
|
||||
"ST": "{{item.names_st}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue