-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AuthConfig conversion webhook (#137)
* AuthConfig conversion webhook Deploys the AuthConfig CRD conversion webhook (based on the Authorino container image), as part of deploying the Operator. This is because the conversion webhook is a single deployment per cluster (similarly to the Operator itself), nevertheless it's based on the Authorino code base (which owns the AuthConfig type and therefore the functions to convert between versions of the CRD). This change introduces a dependency of the Operator on cert-manager (https://cert-manager.io). * Script to install the operator + deps without having to clone the repo, nor depending on OLM * Update Authorino manifests
- Loading branch information
1 parent
75b9f81
commit 261466d
Showing
14 changed files
with
6,096 additions
and
91 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
app: authorino | ||
authorino-component: authorino-webhooks | ||
name: authorino-webhooks | ||
spec: | ||
ports: | ||
- port: 443 | ||
protocol: TCP | ||
targetPort: 9443 | ||
selector: | ||
app: authorino | ||
authorino-component: authorino-webhooks | ||
status: | ||
loadBalancer: {} |
Oops, something went wrong.