generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 54
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
Showing
26 changed files
with
9,234 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
apiVersion: v2 | ||
name: jobset | ||
description: A Helm chart for JobSet Controller | ||
type: application | ||
version: 0.1.0 | ||
appVersion: "0.7.2" | ||
keywords: | ||
- kubernetes | ||
- jobset | ||
- batch | ||
maintainers: | ||
- name: Kubernetes SIG Batch |
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,74 @@ | ||
# JobSet Helm Chart | ||
![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: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square) | ||
|
||
This Helm chart installs the JobSet Controller in your Kubernetes cluster. JobSet is a Kubernetes controller that manages groups of related Jobs as a single unit. | ||
|
||
## Installing the Chart | ||
|
||
To install the chart with the release name `jobset`: | ||
|
||
```bash | ||
helm install jobset ./charts/jobset | ||
``` | ||
|
||
## Configuration | ||
|
||
| Key | Type | Default | Description | | ||
|-------------------------------------------|--------|------------------------------|-------------| | ||
| affinity | object | `{}` | | | ||
| certManager.certificate.duration | string | `"8760h"` | | | ||
| certManager.certificate.renewBefore | string | `"720h"` | | | ||
| certManager.enabled | bool | `true` | | | ||
| crds.enabled | bool | `true` | | | ||
| crds.install | bool | `true` | | | ||
| fullnameOverride | string | `""` | | | ||
| image.pullPolicy | string | `"IfNotPresent"` | | | ||
| image.repository | string | `"jobset-controller"` | | | ||
| image.tag | string | `""` | | | ||
| imagePullSecrets | list | `[]` | | | ||
| leaderElection.enabled | bool | `true` | | | ||
| leaderElection.resourceName | string | `"jobset-leader-election"` | | | ||
| manager.healthProbe.livenessInitialDelay | int | `15` | | | ||
| manager.healthProbe.livenessPath | string | `"/healthz"` | | | ||
| manager.healthProbe.livenessTimeout | int | `30` | | | ||
| manager.healthProbe.port | int | `8081` | | | ||
| manager.healthProbe.readinessInitialDelay | int | `5` | | | ||
| manager.healthProbe.readinessPath | string | `"/readyz"` | | | ||
| manager.healthProbe.readinessTimeout | int | `30` | | | ||
| metrics.enabled | bool | `true` | | | ||
| metrics.service.port | int | `8443` | | | ||
| metrics.service.type | string | `"ClusterIP"` | | | ||
| metrics.serviceMonitor.enabled | bool | `false` | | | ||
| metrics.serviceMonitor.interval | string | `"30s"` | | | ||
| metrics.serviceMonitor.labels | object | `{}` | | | ||
| metrics.serviceMonitor.scrapeTimeout | string | `"10s"` | | | ||
| nameOverride | string | `""` | | | ||
| nodeSelector | object | `{}` | | | ||
| podAnnotations | object | `{}` | | | ||
| podSecurityContext.runAsNonRoot | bool | `true` | | | ||
| podSecurityContext.seccompProfile.type | string | `"RuntimeDefault"` | | | ||
| rbac.create | bool | `true` | | | ||
| rbac.createAggregateRoles | bool | `true` | | | ||
| replicaCount | int | `1` | | | ||
| resources.limits.cpu | int | `2` | | | ||
| resources.limits.memory | string | `"512Mi"` | | | ||
| resources.requests.cpu | string | `"500m"` | | | ||
| resources.requests.memory | string | `"128Mi"` | | | ||
| securityContext.allowPrivilegeEscalation | bool | `false` | | | ||
| securityContext.capabilities.drop[0] | string | `"ALL"` | | | ||
| serviceAccount.annotations | object | `{}` | | | ||
| serviceAccount.create | bool | `true` | | | ||
| serviceAccount.name | string | `""` | | | ||
| tolerations | list | `[]` | | | ||
| webhook.certManager.enabled | bool | `true` | | | ||
| webhook.certManager.issuerGroup | string | `"cert-manager.io"` | | | ||
| webhook.certManager.issuerKind | string | `"Issuer"` | | | ||
| webhook.certManager.issuerName | string | `"jobset-selfsigned-issuer"` | | | ||
| webhook.enabled | bool | `true` | | | ||
| webhook.mutatingWebhook.failurePolicy | string | `"Fail"` | | | ||
| webhook.mutatingWebhook.timeoutSeconds | int | `10` | | | ||
| webhook.port | int | `9443` | | | ||
| webhook.service.port | int | `443` | | | ||
| webhook.service.type | string | `"ClusterIP"` | | | ||
| webhook.validatingWebhook.failurePolicy | string | `"Fail"` | | | ||
| webhook.validatingWebhook.timeoutSeconds | int | `10` | | |
Oops, something went wrong.