feat: Add ingress requirer implementation and oauth provider implementation - #245
Open
Thanhphan1147 wants to merge 16 commits into
Open
Thanhphan1147 wants to merge 16 commits into
Thanhphan1147 wants to merge 16 commits into
Conversation
…th_provider Add ingress requirer and oauth provider
…and_oauth_provider
…o add_ingress_requirer_and_oauth_provider
…th_provider Add ingress requirer and oauth provider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds 2 new libraries:
lib/charms/hydra/v0/oauth.pywhich contains the oauth provider implementationlib/charms/traefik_k8s/v2/ingress.pywhich contains the ingress requirer implementationNew relations:
Ingress
The
ingresslibrary is used to integrate dex with provider charms liketraefik-k8s,nginx-ingress-integratorandgateway-api-integrator, there are only 2 notable changes made in this PR:issuerfield of the dex config to reflect the ingress URLOauth
The
oauthprovider implementation is used to integrate dex with oauth requirer charm by generating a static client, add the static client to dex's config and inform the requirer of the static client via relation data.