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

Helm docs #231

Merged
merged 2 commits into from
Nov 20, 2024
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
1 change: 1 addition & 0 deletions charts/authorino-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ kubeVersion: ">=1.19.0-0"
type: application
# The version will be properly set when the chart is released matching the operator version
version: "0.0.0"
appVersion: "0.0.0"
maintainers:
- email: [email protected]
name: Guilherme Cassolato
Expand Down
21 changes: 21 additions & 0 deletions charts/authorino-operator/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Authorino Operator

This is the Helm Chart to install the official Authorino Kubernetes Operator

## Installation

```sh
helm repo add kuadrant https://kuadrant.io/helm-charts/ --force-update
helm install \
authorino-operator kuadrant/authorino-operator \
--create-namespace \
--namespace authorino-system
```

### Parameters

**Coming soon!** At the moment, there's no configuration parameters exposed.

## Usage

Read the documentation and user guides in the [Getting Started guide](https://github.com/Kuadrant/authorino/blob/main/docs/getting-started.md).
1 change: 1 addition & 0 deletions make/helm.mk
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ helm-build: $(YQ) kustomize manifests ## Build the helm chart from kustomize man
# Build the helm chart templates from kustomize manifests
$(KUSTOMIZE) build config/helm > charts/authorino-operator/templates/manifests.yaml
V="$(BUNDLE_VERSION)" $(YQ) -i e '.version = strenv(V)' charts/authorino-operator/Chart.yaml
V="$(BUNDLE_VERSION)" $(YQ) -i e '.appVersion = strenv(V)' charts/authorino-operator/Chart.yaml
# Roll back edit
cd config/manager && $(KUSTOMIZE) edit set image controller=${DEFAULT_OPERATOR_IMAGE}
cd config/helm && $(KUSTOMIZE) edit set namespace authorino-operator
Expand Down
Loading