|
| 1 | +# kamaji-crds |
| 2 | + |
| 3 | +   |
| 4 | + |
| 5 | +Kamaji is the Hosted Control Plane Manager for Kubernetes. |
| 6 | + |
| 7 | +## Maintainers |
| 8 | + |
| 9 | +| Name | Email | Url | |
| 10 | +| ---- | ------ | --- | |
| 11 | +| Dario Tranchitella | <[email protected]> | <https://clastix.io> | |
| 12 | +| Adriano Pezzuto | <[email protected]> | <https://clastix.io> | |
| 13 | + |
| 14 | +## Source Code |
| 15 | + |
| 16 | +* <https://github.com/clastix/kamaji> |
| 17 | + |
| 18 | +[Kamaji](https://github.com/clastix/kamaji) Custom Resource Definitions packaged as Helm Charts. |
| 19 | + |
| 20 | +## How to use this chart |
| 21 | + |
| 22 | +Add `clastix` Helm repository: |
| 23 | + |
| 24 | + helm repo add clastix https://clastix.github.io/charts |
| 25 | + |
| 26 | +Install the Chart with the release name `kamaji-crds`: |
| 27 | + |
| 28 | + helm upgrade --install --namespace kamaji-system --create-namespace kamaji-crds clastix/kamaji-crds |
| 29 | + |
| 30 | +Show the status: |
| 31 | + |
| 32 | + helm status kamaji-crds -n kamaji-system |
| 33 | + |
| 34 | +Upgrade the Chart |
| 35 | + |
| 36 | + helm upgrade kamaji-crds -n kamaji-system clastix/kamaji-crds |
| 37 | + |
| 38 | +Uninstall the Chart |
| 39 | + |
| 40 | + helm uninstall kamaji-crds -n kamaji-system |
| 41 | + |
| 42 | +## Customize the installation |
| 43 | + |
| 44 | +There are two methods for specifying overrides of values during Chart installation: `--values` and `--set`. |
| 45 | + |
| 46 | +The `--values` option is the preferred method because it allows you to keep your overrides in a YAML file, rather than specifying them all on the command line. Create a copy of the YAML file `values.yaml` and add your overrides to it. |
| 47 | + |
| 48 | +Specify your overrides file when you install the Chart: |
| 49 | + |
| 50 | + helm upgrade kamaji-crds --install --namespace kamaji-system --create-namespace clastix/kamaji-crds --values myvalues.yaml |
| 51 | + |
| 52 | +The values in your overrides file `myvalues.yaml` will override their counterparts in the Chart's values.yaml file. Any values in `values.yaml` that weren’t overridden will keep their defaults. |
| 53 | + |
| 54 | +If you only need to make minor customizations, you can specify them on the command line by using the `--set` option. For example: |
| 55 | + |
| 56 | + helm upgrade kamaji-crds --install --namespace kamaji-system --create-namespace clastix/kamaji-crds --set kamajiCertificateName=kamaji |
| 57 | + |
| 58 | +## Values |
| 59 | + |
| 60 | +| Key | Type | Default | Description | |
| 61 | +|-----|------|---------|-------------| |
| 62 | +| fullnameOverride | string | `""` | Overrides the full name of the resources created by the chart. | |
| 63 | +| kamajiCertificateName | string | `"kamaji-serving-cert"` | The cert-manager Certificate resource name, holding the Certificate Authority for webhooks. | |
| 64 | +| kamajiNamespace | string | `"kamaji-system"` | The namespace where Kamaji has been installed: required to inject the Certificate Authority for cert-manager. | |
| 65 | +| kamajiService | string | `"kamaji-webhook-service"` | The Kamaji webhook Service name. | |
| 66 | +| nameOverride | string | `""` | Overrides the name of the chart for resource naming purposes. | |
0 commit comments