Added age column to kubectl output
All checks were successful
Build and deploy / Build container and manifests (push) Successful in 7m34s

This commit is contained in:
Dreaded_X 2025-04-18 15:00:14 +02:00
parent 988c475c5e
commit d602220c4b
Signed by: Dreaded_X
GPG Key ID: 5A0CBFE3C3377FAA

View File

@ -32,7 +32,8 @@ enum AccessPolicy {
doc = "Custom resource for managing authelia access rules",
printcolumn = r#"{"name":"Domain", "type":"string", "jsonPath":".spec.domain"}"#,
printcolumn = r#"{"name":"Policy", "type":"string", "jsonPath":".spec.policy"}"#,
printcolumn = r#"{"name":"Subject", "type":"string", "jsonPath":".spec.subject"}"#
printcolumn = r#"{"name":"Subject", "type":"string", "jsonPath":".spec.subject"}"#,
printcolumn = r#"{"name":"Age", "type":"date", "jsonPath":".metadata.creationTimestamp"}"#
)]
#[serde(rename_all = "camelCase")]
pub struct AccessControlRuleSpec {