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
5 changes: 5 additions & 0 deletions .changeset/changesets/infallibly-aboveboard-crake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
lldap-operator-helm-chart: patch
lldap-operator-crds: minor
---
Define `LldapUser`, `LldapGroup`, `LldapMembership`, and `LldapAttributeSchema` CRDs generated from Rust types, with CEL validation requiring the `lldap-operator.lukidoescode.com/lldap-instance` label, conditional `passwordSecretRef` on `LldapUser`, and email format checking
19 changes: 18 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,30 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.85.0"
toolchain: "1.88.0"

- uses: Swatinem/rust-cache@v2

- name: Check MSRV
run: cargo test --workspace --all-targets --locked

crd-yaml-up-to-date:
name: CRD YAML Up-To-Date
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- uses: Swatinem/rust-cache@v2

- name: Regenerate CRD YAML
run: cargo run -p lldap-operator-crds --bin crdgen

- name: Verify chart CRD YAML is up to date
run: git diff --exit-code charts/lldap-operator/crds

helm-lint:
name: Helm Lint
runs-on: ubuntu-latest
Expand Down
Loading
Loading