Skip to content

Commit

Permalink
feat: allow certificate_authority_data not present (#1432)
Browse files Browse the repository at this point in the history
Signed-off-by: ljun20160606 <[email protected]>
  • Loading branch information
ljun20160606 authored Mar 20, 2024
1 parent 73832c6 commit 3d2b464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kube-client/src/config/file_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ pub struct ExecAuthCluster {
#[serde(skip_serializing_if = "Option::is_none")]
pub insecure_skip_tls_verify: Option<bool>,
/// PEM-encoded certificate authority certificates. Overrides `certificate_authority`
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default, skip_serializing_if = "Option::is_none")]
#[serde(with = "base64serde")]
pub certificate_authority_data: Option<Vec<u8>>,
/// URL to the proxy to be used for all requests.
Expand Down

0 comments on commit 3d2b464

Please sign in to comment.