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

Preparing info for ArtifactHub.io #975

Merged
merged 4 commits into from
Nov 11, 2024
Merged
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
98 changes: 98 additions & 0 deletions charts/kuadrant-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,101 @@ maintainers:
name: Jim Fitzpatrick
- email: chfan@redhat.com
name: Kevin Chi Fan
annotations:
artifacthub.io/category: networking
artifacthub.io/crds: |
- kind: Kuadrant
version: v1beta1
name: kuadrants.kuadrant.io
displayName: Kuadrant
description: Kuadrant configures installations of Kuadrant Service Protection components.
- kind: AuthPolicy
version: v1
name: authpolicies.kuadrant.io
displayName: AuthPolicy
description: AuthPolicy enables authentication and authorization for service workloads in a Gateway API network.
- kind: RateLimitPolicy
version: v1
name: ratelimitpolicies.kuadrant.io
displayName: RateLimitPolicy
description: RateLimitPolicy enables rate limiting for service workloads in a Gateway API network.
- kind: DNSPolicy
version: v1
name: dnspolicies.kuadrant.io
displayName: DNSPolicy
description: DNSPolicy is the Schema for the dnspolicies API.
- kind: TLSPolicy
version: v1
name: tlspolicies.kuadrant.io
displayName: TLSPolicy
description: TLSPolicy is the Schema for the tlspolicies API.
artifacthub.io/crdsExamples: |
- apiVersion: kuadrant.io/v1beta1
kind: Kuadrant
metadata:
name: kuadrant-sample
spec: {}
- apiVersion: kuadrant.io/v1
kind: AuthPolicy
metadata:
name: toystore
spec:
targetRef:
group: gateway.networking.k8s.io
kind: HTTPRoute
name: toystore
rules:
authentication:
"apikey":
apiKey:
selector: {}
credentials:
authorizationHeader:
prefix: APIKEY
- apiVersion: kuadrant.io/v1
kind: RateLimitPolicy
metadata:
name: toystore
spec:
targetRef:
group: gateway.networking.k8s.io
kind: HTTPRoute
name: toystore
limits:
toys:
rates:
- limit: 50
window: 1m
- apiVersion: kuadrant.io/v1
kind: DNSPolicy
metadata:
name: dnspolicy-sample
spec:
targetRef:
name: example-gateway
group: gateway.networking.k8s.io
kind: Gateway
healthCheck:
endpoint: /
protocol: HTTP
- apiVersion: kuadrant.io/v1
kind: TLSPolicy
metadata:
name: tlspolicy-sample
spec:
targetRef:
name: example-gateway
group: gateway.networking.k8s.io
kind: Gateway
issuerRef:
group: cert-manager.io
kind: ClusterIssuer
name: self-signed-ca
artifacthub.io/license: Apache-2.0
artifacthub.io/links: |
- name: Kuadrant
url: https://kuadrant.io
- name: Github
url: https://github.com/Kuadrant/kuadrant-operator
artifacthub.io/operator: "true"
artifacthub.io/operatorCapabilities: Basic Install
Loading