-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Miguel Mingorance
committed
Aug 20, 2020
1 parent
4e4550f
commit a30af96
Showing
4 changed files
with
60 additions
and
10 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
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 |
---|---|---|
|
@@ -6,12 +6,38 @@ Installs a deployment that overprovisions the cluster | |
|
||
**Homepage:** <https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler> | ||
|
||
## Maintainers | ||
## How to install this chart | ||
|
||
| Name | Email | Url | | ||
| ---- | ------ | --- | | ||
| max-rocket-internet | [email protected] | | | ||
| mmingorance-dh | [email protected] | | | ||
Add Delivery Hero public chart repo: | ||
|
||
```console | ||
helm repo add deliveryhero https://charts.deliveryhero.io | ||
helm repo update | ||
``` | ||
|
||
A simple install with default values: | ||
|
||
```console | ||
helm install deliveryhero/cluster-overprovisioner | ||
``` | ||
|
||
To install the chart with the release name `my-release`: | ||
|
||
```console | ||
helm install --name my-release deliveryhero/cluster-overprovisioner | ||
``` | ||
|
||
To install with some set values: | ||
|
||
```console | ||
helm install --name my-release deliveryhero/cluster-overprovisioner --set values_key1=value1 --set values_key2=value2 | ||
``` | ||
|
||
To install with custom values file: | ||
|
||
```console | ||
helm install --name my-release deliveryhero/cluster-overprovisioner -f values.yaml | ||
``` | ||
|
||
## Source Code | ||
|
||
|
@@ -46,3 +72,10 @@ Installs a deployment that overprovisions the cluster | |
| priorityClassDefault.value | int | `0` | Priority value of the default priorityClass | | ||
| priorityClassOverprovision.name | string | `"overprovisioning"` | Name of the overprovision priorityClass | | ||
| priorityClassOverprovision.value | int | `-1` | Priority value of the overprovision priorityClass | | ||
|
||
## Maintainers | ||
|
||
| Name | Email | Url | | ||
| ---- | ------ | --- | | ||
| max-rocket-internet | [email protected] | | | ||
| mmingorance-dh | [email protected] | | |
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,18 @@ | ||
deployments: | ||
- name: ci-one | ||
annotations: {} | ||
replicaCount: 1 | ||
nodeSelector: {} | ||
resources: {} | ||
tolerations: [] | ||
affinity: {} | ||
labels: {} | ||
|
||
- name: ci-two | ||
annotations: {} | ||
replicaCount: 0 | ||
nodeSelector: {} | ||
resources: {} | ||
tolerations: [] | ||
affinity: {} | ||
labels: {} |
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