Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b0f6fdd
chore(tilt): Remove CRD handling
Techassi Oct 16, 2025
b4cdb95
fix(tilt): Trigger rebuild and set built image
Techassi Oct 16, 2025
b73a094
feat(tilt): Support setting a custom Helm values file
Techassi Oct 16, 2025
c84e382
chore: Remove CRD deployment by Helm
Techassi Oct 16, 2025
c3a6322
refactor: Separate CRDs, add SecretClass change
Techassi Oct 16, 2025
1d3c3dc
feat: Add conversion webhook and CRD maintainer
Techassi Oct 16, 2025
7d625cb
chore: Update dependencies
Techassi Oct 16, 2025
7a120eb
chore: Merge branch 'main' into feat/crd-versioning
Techassi Oct 16, 2025
b12fbf2
chore: Mark extra/crds.yaml as generated
Techassi Oct 16, 2025
42d3b8a
chore: Revert accidental reformat of Cargo.toml
Techassi Oct 16, 2025
2eb9f24
chore: Update Cargo.nix
Techassi Oct 16, 2025
1e33f3d
chore: Remove superfluous file
Techassi Oct 17, 2025
2e32cd7
refactor: Move webhook and CRD maintainer creation into function
Techassi Oct 17, 2025
b66f3c3
fix: Correctly set Secret namespace for 'tls' SecretClass
Techassi Oct 17, 2025
5ec590c
fix: Re-enable custom ca.secret.namespace for 'tls' SecretClass
Techassi Oct 17, 2025
13c9ef7
test: Fix CRD conversion failures
Techassi Oct 17, 2025
e4f2888
chore: Bump stackable-operator to 0.100.0
Techassi Oct 17, 2025
ffdab80
chore: Apply suggestions
Techassi Oct 17, 2025
60bcfda
refactor: Move create_webhook_and_maintainer function
Techassi Oct 17, 2025
45c3a17
chore: Remove version and instance label from 'tls' SecretClass
Techassi Oct 17, 2025
666d6a4
docs: Mark generateSamAccountName as non-experimantal
Techassi Oct 17, 2025
504cf96
chore: Merge branch 'main' into feat/crd-versioning
Techassi Oct 21, 2025
b5ed105
fix: Only select Deployment in Service
Techassi Oct 22, 2025
fe17308
chore: Merge branch 'main' into feat/crd-versioning
Techassi Oct 22, 2025
c216e2e
feat(helm): Use new values in templates
Techassi Oct 22, 2025
e2cbbdc
feat(helm): Gate create, patch permissions for CRDs
Techassi Oct 22, 2025
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
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
nix/** linguist-generated
Cargo.nix linguist-generated
crate-hashes.json linguist-generated
extra/crds.yaml linguist-generated
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will be overwritten by templating

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think maybe we don't want to hide this as generated (even though it is). It could be handy during reviews to see the changes to the CRDs as a last-line-of-defense.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ohhh this is what this is for? Big +1, we should always review the actual CRD change :)

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ result
image.tar

tilt_options.json
local_values.yaml
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this will be overwritten by templating

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can highly recommend adding _private/ to a global .gitignore, or adding * to _private/.gitignore for local stuff while keeping the branch clean.


.direnv/
.direnvrc
Expand Down
Loading