-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(k8s-resources): Updated readme (#864)
Signed-off-by: Steve Hipwell <[email protected]>
- Loading branch information
1 parent
7589c2d
commit 60de06f
Showing
5 changed files
with
69 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
confluence-server | ||
jira-software | ||
k8s-resources | ||
nexus3 | ||
node-config | ||
overprovisioner | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,42 @@ | ||
# K8s Resources | ||
# k8s-resources | ||
|
||
The _K8s Resources_ chart is designed to deploy arbitrary Kubernetes resources to a _Kubernetes_ cluster. | ||
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square) | ||
|
||
Helm chart for provisioning arbitrary Kubernetes resources. | ||
|
||
**Homepage:** <https://github.com/stevehipwell/helm-charts/> | ||
|
||
## Maintainers | ||
|
||
| Name | Email | Url | | ||
| ---- | ------ | --- | | ||
| stevehipwell | <[email protected]> | | | ||
|
||
## Source Code | ||
|
||
* <https://github.com/stevehipwell/helm-charts/> | ||
|
||
## Installing the Chart | ||
|
||
Before you can install the chart you will need to add the `stevehipwell` repo to [Helm](https://helm.sh/). | ||
To install the chart using the recommended OCI method you can use the following command. | ||
|
||
```shell | ||
helm repo add stevehipwell https://stevehipwell.github.io/helm-charts/ | ||
helm upgrade --install k8s-resources oci://ghcr.io/stevehipwell/helm-charts/k8s-resources --version 0.1.0 | ||
``` | ||
|
||
After you've installed the repo you can install the chart. | ||
Alternatively you can use the legacy non-OCI method via the following commands. | ||
|
||
```shell | ||
helm upgrade --install --namespace default --values ./my-values.yaml my-release stevehipwell/k8s-resources | ||
helm repo add stevehipwell https://stevehipwell.github.io/helm-charts/ | ||
helm upgrade --install k8s-resources stevehipwell/k8s-resources --version 0.1.0 | ||
``` | ||
|
||
## Configuration | ||
## Values | ||
|
||
| Key | Type | Default | Description | | ||
|-----|------|---------|-------------| | ||
| resources | list | `[]` | _Kubernetes_ resources to create. | | ||
|
||
The following table lists the configurable parameters of the _K8s Resources_ chart and their default values. | ||
---------------------------------------------- | ||
|
||
| Parameter | Description | Default | | ||
| ----------------------- | ---------------------------------------------------------------------------------- | ------- | | ||
| `resources.apiVersion` | API version of the resource (required). | | | ||
| `resources.kind` | Kind of the resource (required). | | | ||
| `resources.name` | Name of the resource (required). | | | ||
| `resources.namespace` | Namespace for the resource (don't provide this if the resource is cluster scoped). | | | ||
| `resources.labels` | Labels for the resource (optional). | | | ||
| `resources.annotations` | Annotations for the resource (optional). | | | ||
| `resources.content` | Content of the resource (optional). | | | ||
Autogenerated from chart metadata using [helm-docs](https://github.com/norwoodj/helm-docs/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{{ template "chart.header" . }} | ||
{{ template "chart.deprecationWarning" . }} | ||
|
||
{{ template "chart.badgesSection" . }} | ||
|
||
{{ template "chart.description" . }} | ||
|
||
{{ template "chart.homepageLine" . }} | ||
|
||
{{ template "chart.maintainersSection" . }} | ||
|
||
{{ template "chart.sourcesSection" . }} | ||
|
||
## Installing the Chart | ||
|
||
To install the chart using the recommended OCI method you can use the following command. | ||
|
||
```shell | ||
helm upgrade --install {{ template "chart.name" . }} oci://ghcr.io/stevehipwell/helm-charts/{{ template "chart.name" . }} --version {{ template "chart.version" . }} | ||
``` | ||
|
||
Alternatively you can use the legacy non-OCI method via the following commands. | ||
|
||
```shell | ||
helm repo add stevehipwell https://stevehipwell.github.io/helm-charts/ | ||
helm upgrade --install {{ template "chart.name" . }} stevehipwell/{{ template "chart.name" . }} --version {{ template "chart.version" . }} | ||
``` | ||
|
||
{{ template "chart.requirementsSection" . }} | ||
|
||
{{ template "chart.valuesSection" . }} | ||
|
||
---------------------------------------------- | ||
|
||
Autogenerated from chart metadata using [helm-docs](https://github.com/norwoodj/helm-docs/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters