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 #309

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
21 changes: 21 additions & 0 deletions charts/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# DNS Operator

This is the Helm Chart to install the official Kuadrant DNS Kubernetes Operator

## Installation

```sh
helm repo add kuadrant https://kuadrant.io/helm-charts/ --force-update
helm install \
dns-operator kuadrant/dns-operator \
--create-namespace \
--namespace kuadrant-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/dns-operator/?tab=readme-ov-file#getting-started).
1 change: 1 addition & 0 deletions charts/dns-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,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: Michael Nairn
Expand Down
1 change: 1 addition & 0 deletions make/helm.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ helm-build: yq manifests kustomize operator-sdk ## Build the helm chart from kus
# Build the helm chart templates from kustomize manifests
$(KUSTOMIZE) build config/helm > charts/dns-operator/templates/manifests.yaml
V="$(VERSION)" $(YQ) eval '.version = strenv(V)' -i charts/dns-operator/Chart.yaml
V="$(VERSION)" $(YQ) eval '.appVersion = strenv(V)' -i charts/dns-operator/Chart.yaml

.PHONY: helm-install
helm-install: $(HELM) ## Install the helm chart
Expand Down
Loading