Skip to content

Commit

Permalink
feat: requestedSecretLifetime role group property added
Browse files Browse the repository at this point in the history
  • Loading branch information
razvan committed Nov 28, 2024
1 parent be2bdd9 commit ca3f88f
Show file tree
Hide file tree
Showing 9 changed files with 113 additions and 39 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Added

- Lifetime of auto generated certificates is configurable with the `requestedSecretLifetime` role group property ([#660])

### Fixed

- Fix OIDC endpoint construction in case the `rootPath` does have a trailing slash ([#656]).
Expand All @@ -13,6 +17,7 @@ All notable changes to this project will be documented in this file.

[#656]: https://github.com/stackabletech/druid-operator/pull/656
[#657]: https://github.com/stackabletech/druid-operator/pull/657
[#660]: https://github.com/stackabletech/druid-operator/pull/660

## [24.11.0] - 2024-11-18

Expand Down
19 changes: 4 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 3 additions & 18 deletions Cargo.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ strum = { version = "0.26", features = ["derive"] }
tokio = { version = "1.40", features = ["full"] }
tracing = "0.1"

# [patch."https://github.com/stackabletech/operator-rs.git"]
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }
[patch."https://github.com/stackabletech/operator-rs.git"]
stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "feat/request-secret-lifetime" }
3 changes: 0 additions & 3 deletions crate-hashes.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions deploy/helm/druid-operator/crds/crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,10 @@ spec:
nullable: true
type: boolean
type: object
requestedSecretLifetime:
description: Request secret (currently only auto certificates) lifetime from the secret operator.
nullable: true
type: string
resources:
default:
cpu:
Expand Down Expand Up @@ -372,6 +376,10 @@ spec:
nullable: true
type: boolean
type: object
requestedSecretLifetime:
description: Request secret (currently only auto certificates) lifetime from the secret operator.
nullable: true
type: string
resources:
default:
cpu:
Expand Down Expand Up @@ -994,6 +1002,10 @@ spec:
nullable: true
type: boolean
type: object
requestedSecretLifetime:
description: Request secret (currently only auto certificates) lifetime from the secret operator.
nullable: true
type: string
resources:
default:
cpu:
Expand Down Expand Up @@ -1212,6 +1224,10 @@ spec:
nullable: true
type: boolean
type: object
requestedSecretLifetime:
description: Request secret (currently only auto certificates) lifetime from the secret operator.
nullable: true
type: string
resources:
default:
cpu:
Expand Down Expand Up @@ -1410,6 +1426,10 @@ spec:
nullable: true
type: boolean
type: object
requestedSecretLifetime:
description: Request secret (currently only auto certificates) lifetime from the secret operator.
nullable: true
type: string
resources:
default:
cpu:
Expand Down Expand Up @@ -1659,6 +1679,10 @@ spec:
nullable: true
type: boolean
type: object
requestedSecretLifetime:
description: Request secret (currently only auto certificates) lifetime from the secret operator.
nullable: true
type: string
resources:
default:
cpu:
Expand Down Expand Up @@ -1936,6 +1960,10 @@ spec:
nullable: true
type: boolean
type: object
requestedSecretLifetime:
description: Request secret (currently only auto certificates) lifetime from the secret operator.
nullable: true
type: string
resources:
default:
cpu:
Expand Down Expand Up @@ -2154,6 +2182,10 @@ spec:
nullable: true
type: boolean
type: object
requestedSecretLifetime:
description: Request secret (currently only auto certificates) lifetime from the secret operator.
nullable: true
type: string
resources:
default:
cpu:
Expand Down Expand Up @@ -2352,6 +2384,10 @@ spec:
nullable: true
type: boolean
type: object
requestedSecretLifetime:
description: Request secret (currently only auto certificates) lifetime from the secret operator.
nullable: true
type: string
resources:
default:
cpu:
Expand Down Expand Up @@ -2570,6 +2606,10 @@ spec:
nullable: true
type: boolean
type: object
requestedSecretLifetime:
description: Request secret (currently only auto certificates) lifetime from the secret operator.
nullable: true
type: string
resources:
default:
cpu:
Expand Down
Loading

0 comments on commit ca3f88f

Please sign in to comment.