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

Add selectorLabels for baserow pods #1102

Merged
merged 5 commits into from
Aug 29, 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
4 changes: 2 additions & 2 deletions charts/baserow/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: baserow
description: Baserow is an open source no-code database and Airtable alternative.
type: application
version: 2.1.3
version: 2.1.4
appVersion: "1.22.3"
home: https://github.com/christianknell/helm-charts
icon: https://baserow.io/img/favicon_192.png
Expand All @@ -25,7 +25,7 @@ annotations:
artifacthub.io/category: database
artifacthub.io/changes: |
- kind: added
description: priorityClassName to deployments
description: option to define additional selector labels
artifacthub.io/screenshots: |
- title: Create your own online database without technical experience.
url: https://baserow.io/_nuxt/img/home_intro_screenshot.194c66b.png
Expand Down
4 changes: 4 additions & 0 deletions charts/baserow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ The command removes all the Kubernetes components associated with the chart and
| backend.asgi.resources | object | `{}` | Resource limits and requests for the controller pods. |
| backend.asgi.revisionHistoryLimit | int | `10` | The number of old ReplicaSets to retain |
| backend.asgi.securityContext | object | `{"runAsGroup":9999,"runAsNonRoot":true,"runAsUser":9999}` | container-level security context |
| backend.asgi.selectorLabels | object | `{}` | Labels to add to the pod |
| backend.asgi.service.port | int | `8000` | Kubernetes port where service is exposed |
| backend.asgi.service.type | string | `"ClusterIP"` | Kubernetes service type |
| backend.asgi.serviceAccount.annotations | object | `{}` | Annotations to add to the service account |
Expand All @@ -92,6 +93,7 @@ The command removes all the Kubernetes components associated with the chart and
| backend.celery.resources | object | `{}` | Resource limits and requests for the controller pods. |
| backend.celery.revisionHistoryLimit | int | `10` | The number of old ReplicaSets to retain |
| backend.celery.securityContext | object | `{"runAsGroup":9999,"runAsNonRoot":true,"runAsUser":9999}` | container-level security context |
| backend.celery.selectorLabels | object | `{}` | Labels to add to the pod |
| backend.celery.serviceAccount.annotations | object | `{}` | Annotations to add to the service account |
| backend.celery.serviceAccount.create | bool | `true` | Specifies whether a service account should be created |
| backend.celery.serviceAccount.name | string | `""` | The name of the service account to use. If not set and create is true, a name is generated using the fullname template |
Expand Down Expand Up @@ -192,6 +194,7 @@ The command removes all the Kubernetes components associated with the chart and
| backend.wsgi.resources | object | `{}` | Resource limits and requests for the controller pods. |
| backend.wsgi.revisionHistoryLimit | int | `10` | The number of old ReplicaSets to retain |
| backend.wsgi.securityContext | object | `{"runAsGroup":9999,"runAsNonRoot":true,"runAsUser":9999}` | container-level security context |
| backend.wsgi.selectorLabels | object | `{}` | Labels to add to the pod |
| backend.wsgi.service.port | int | `8000` | Kubernetes port where service is exposed |
| backend.wsgi.service.type | string | `"ClusterIP"` | Kubernetes service type |
| backend.wsgi.serviceAccount.annotations | object | `{}` | Annotations to add to the service account |
Expand Down Expand Up @@ -245,6 +248,7 @@ The command removes all the Kubernetes components associated with the chart and
| frontend.resources | object | `{}` | Resource limits and requests for the controller pods. |
| frontend.revisionHistoryLimit | int | `10` | The number of old ReplicaSets to retain |
| frontend.securityContext | object | `{"runAsGroup":9999,"runAsNonRoot":true,"runAsUser":9999}` | container-level security context |
| frontend.selectorLabels | object | `{}` | Labels to add to the pod |
| frontend.service.port | int | `3000` | Kubernetes port where service is exposed |
| frontend.service.type | string | `"ClusterIP"` | Kubernetes service type |
| frontend.serviceAccount.annotations | object | `{}` | Annotations to add to the service account |
Expand Down
Loading
Loading