Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/content/design/trusted-certificates.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Trusted certificates for identity validation in TLS connections
layout: default
design_doc: true
revision: 2
status: draft
status: released (26.1.12)
---

# Overview
Expand Down
10 changes: 5 additions & 5 deletions ocaml/idl/datamodel_lifecycle.ml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ let prototyped_of_field = function
| "Repository", "gpgkey_path" ->
Some "22.12.0"
| "Certificate", "purpose" ->
Some "26.1.9-next"
Some "26.1.12"
| "Certificate", "fingerprint_sha1" ->
Some "24.20.0"
| "Certificate", "fingerprint_sha256" ->
Expand Down Expand Up @@ -292,13 +292,13 @@ let prototyped_of_message = function
| "VM", "set_groups" ->
Some "24.19.1"
| "pool", "exchange_crls_on_join" ->
Some "26.1.9-next"
Some "26.1.12"
| "pool", "exchange_trusted_certificates_on_join" ->
Some "26.1.9-next"
Some "26.1.12"
| "pool", "uninstall_trusted_certificate" ->
Some "26.1.9-next"
Some "26.1.12"
| "pool", "install_trusted_certificate" ->
Some "26.1.9-next"
Some "26.1.12"
| "pool", "set_ssh_auto_mode" ->
Some "25.27.0"
| "pool", "set_console_idle_timeout" ->
Expand Down
7 changes: 6 additions & 1 deletion ocaml/idl/datamodel_pool.ml
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,11 @@ let install_ca_certificate =
; (String, "cert", "The certificate in PEM format")
]
~allowed_roles:(_R_POOL_OP ++ _R_CLIENT_CERT)
~lifecycle:[(Published, "1.290.0", "Install TLS CA certificate")]
~lifecycle:
[
(Published, "1.290.0", "Install TLS CA certificate")
; (Deprecated, "26.1.12", "Use Pool.install_trusted_certificate instead")
]
()

let certificate_uninstall =
Expand Down Expand Up @@ -887,6 +891,7 @@ let uninstall_ca_certificate =
, "Added --force option to allow DB entries to be removed for \
non-existent files"
)
; (Deprecated, "26.1.12", "Use Pool.uninstall_trusted_certificate instead")
]
()

Expand Down
Loading