Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
a5b7d91
wip - compiling
maltesander Mar 29, 2025
aa254e4
wip
maltesander Mar 31, 2025
6f38bb9
wip
maltesander Apr 4, 2025
fc7b35a
cleanup & test
maltesander Apr 13, 2025
261df99
remove comments
maltesander Apr 15, 2025
41d7eec
adapt entra name
maltesander Apr 15, 2025
d52c9aa
set correct default
maltesander Apr 15, 2025
108abe1
Merge remote-tracking branch 'origin/main' into feat/experimental-ent…
maltesander Apr 15, 2025
6f75fc7
merge main
maltesander Apr 15, 2025
04c3117
fmt
maltesander Apr 15, 2025
dc5130f
test fix entra endpoint
maltesander Apr 15, 2025
29202b9
fmt
maltesander Apr 15, 2025
5a4860e
split token and host endpoint
maltesander Apr 15, 2025
6b85d1b
fix group response
maltesander Apr 15, 2025
f438b63
clippy
maltesander Apr 15, 2025
4ed2a92
use url in entra endpoint
maltesander Apr 15, 2025
c26952f
regenerate charts
maltesander Apr 15, 2025
888076d
extend test, improve erros
maltesander Apr 15, 2025
b974eb6
use with_context
maltesander Apr 16, 2025
61baffb
use with context 2
maltesander Apr 16, 2025
c85e2b3
clippy
maltesander Apr 16, 2025
60d903b
Merge remote-tracking branch 'origin/main' into feat/experimental-ent…
maltesander Apr 16, 2025
b1913ca
change endpoint to hostname in CRD
maltesander Apr 17, 2025
cad745a
consolidate naming
maltesander Apr 17, 2025
8c07822
change entrabackend to use url consistently
maltesander Apr 17, 2025
2dc58ce
Merge remote-tracking branch 'origin/main' into feat/experimental-ent…
maltesander Apr 17, 2025
e6a531a
remove obsolete tests
maltesander Apr 17, 2025
45cf3cc
reduce tests further
maltesander Apr 17, 2025
d0c127a
add documentation
maltesander Apr 17, 2025
c93f239
adapted changelog
maltesander Apr 17, 2025
616b514
fix typo
maltesander Apr 17, 2025
4d10eaa
make port optional
maltesander Apr 22, 2025
cd15999
clippy
maltesander Apr 22, 2025
d7b088c
Merge remote-tracking branch 'origin/main' into feat/experimental-ent…
maltesander Apr 22, 2025
bf0b62e
Merge remote-tracking branch 'origin/main' into feat/experimental-ent…
maltesander May 5, 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
74 changes: 32 additions & 42 deletions deploy/helm/opa-operator/crds/crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ spec:
- required:
- experimentalActiveDirectory
- required:
- experimentalEntraBackend
- experimentalEntra
properties:
experimentalActiveDirectory:
description: Backend that fetches user information from Active Directory
Expand Down Expand Up @@ -139,7 +139,7 @@ spec:
- kerberosSecretClassName
- ldapServer
type: object
experimentalEntraBackend:
experimentalEntra:
description: Backend that fetches user information from Microsoft Entra
properties:
clientCredentialsSecret:
Expand All @@ -162,54 +162,44 @@ spec:
description: The Microsoft Entra tenant ID.
type: string
tls:
default:
tls:
verification:
server:
caCert:
webPki: {}
description: Use a TLS connection. Should usually be set to WebPki.
description: Use a TLS connection. If not specified no TLS will be used.
nullable: true
properties:
tls:
description: Use a TLS connection. If not specified no TLS will be used.
nullable: true
verification:
description: The verification method used to verify the certificates of the server and/or the client.
oneOf:
- required:
- none
- required:
- server
properties:
verification:
description: The verification method used to verify the certificates of the server and/or the client.
oneOf:
- required:
- none
- required:
- server
none:
description: Use TLS but don't verify certificates.
type: object
server:
description: Use TLS and a CA certificate to verify the server.
properties:
none:
description: Use TLS but don't verify certificates.
type: object
server:
description: Use TLS and a CA certificate to verify the server.
caCert:
description: CA cert to verify the server.
oneOf:
- required:
- webPki
- required:
- secretClass
properties:
caCert:
description: CA cert to verify the server.
oneOf:
- required:
- webPki
- required:
- secretClass
properties:
secretClass:
description: Name of the [SecretClass](https://docs.stackable.tech/home/nightly/secret-operator/secretclass) which will provide the CA certificate. Note that a SecretClass does not need to have a key but can also work with just a CA certificate, so if you got provided with a CA cert but don't have access to the key you can still use this method.
type: string
webPki:
description: Use TLS and the CA certificates trusted by the common web browsers to verify the server. This can be useful when you e.g. use public AWS S3 or other public available services.
type: object
secretClass:
description: Name of the [SecretClass](https://docs.stackable.tech/home/nightly/secret-operator/secretclass) which will provide the CA certificate. Note that a SecretClass does not need to have a key but can also work with just a CA certificate, so if you got provided with a CA cert but don't have access to the key you can still use this method.
type: string
webPki:
description: Use TLS and the CA certificates trusted by the common web browsers to verify the server. This can be useful when you e.g. use public AWS S3 or other public available services.
type: object
required:
- caCert
type: object
required:
- caCert
type: object
required:
- verification
type: object
required:
- verification
type: object
required:
- clientCredentialsSecret
Expand Down
2 changes: 1 addition & 1 deletion rust/operator-binary/src/crd/user_info_fetcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub mod versioned {
ActiveDirectory(v1alpha1::ActiveDirectoryBackend),

/// Backend that fetches user information from Microsoft Entra
#[serde(rename = "experimentalEntraBackend")]
#[serde(rename = "experimentalEntra")]
Entra(v1alpha1::EntraBackend),
}

Expand Down
Loading