Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing information to CSV #163

Merged
merged 1 commit into from
Dec 11, 2023
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
32 changes: 31 additions & 1 deletion bundle/manifests/authorino-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,34 @@ metadata:
annotations:
alm-examples: |-
[
{
"apiVersion": "authorino.kuadrant.io/v1beta2",
"kind": "AuthConfig",
"metadata": {
"name": "talker-api-protection"
},
"spec": {
"authentication": {
"api-key-users": {
"apiKey": {
"selector": {
"matchLabels": {
"group": "friends"
}
}
},
"credentials": {
"authorizationHeader": {
"prefix": "APIKEY"
}
}
}
},
"hosts": [
"talker-api.io"
]
}
},
{
"apiVersion": "operator.authorino.kuadrant.io/v1beta1",
"kind": "Authorino",
Expand Down Expand Up @@ -43,7 +71,9 @@ spec:
kind: AuthConfig
name: authconfigs.authorino.kuadrant.io
version: v1beta1
- kind: AuthConfig
- description: API to describe the desired protection for a service
displayName: AuthConfig
kind: AuthConfig
name: authconfigs.authorino.kuadrant.io
version: v1beta2
- description: API to create instances of authorino
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ spec:
apiservicedefinitions: {}
customresourcedefinitions:
owned:
- description: API to describe the desired protection for a service
displayName: AuthConfig
kind: AuthConfig
name: authconfigs.authorino.kuadrant.io
version: v1beta2
- description: API to describe the desired protection for a service
displayName: AuthConfig
kind: AuthConfig
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ spec:
apiservicedefinitions: {}
customresourcedefinitions:
owned:
- description: API to describe the desired protection for a service
displayName: AuthConfig
kind: AuthConfig
name: authconfigs.authorino.kuadrant.io
version: v1beta2
- description: API to describe the desired protection for a service
displayName: AuthConfig
kind: AuthConfig
Expand Down
16 changes: 16 additions & 0 deletions config/samples/authorino-operator_v1beta2_authconfig.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: authorino.kuadrant.io/v1beta2
kind: AuthConfig
metadata:
name: talker-api-protection
spec:
hosts:
- talker-api.io
authentication:
"api-key-users":
apiKey:
selector:
matchLabels:
group: friends
credentials:
authorizationHeader:
prefix: APIKEY
1 change: 1 addition & 0 deletions config/samples/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## Append samples you want in your CSV to this file as resources ##
resources:
- authorino-operator_v1beta1_authorino.yaml
- authorino-operator_v1beta2_authconfig.yaml
#+kubebuilder:scaffold:manifestskustomizesamples
Loading