Skip to content

Commit

Permalink
Merge branch 'main' into selectorLabels
Browse files Browse the repository at this point in the history
  • Loading branch information
christianhuth authored Aug 29, 2024
2 parents 997a716 + 7a6856d commit ae95f10
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 3 deletions.
4 changes: 4 additions & 0 deletions charts/baserow/README.md

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions charts/baserow/templates/asgi/asgi-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ spec:
- name: media
mountPath: {{ .Values.backend.config.media.root | quote }}
{{- end }}
{{- if .Values.backend.asgi.priorityClassName }}
priorityClassName: {{ .Values.backend.asgi.priorityClassName }}
{{- end }}
{{- with .Values.backend.asgi.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
3 changes: 3 additions & 0 deletions charts/baserow/templates/celery/celery-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,9 @@ spec:
- name: media
mountPath: {{ .Values.backend.config.media.root | quote }}
{{- end }}
{{- if .Values.backend.celery.priorityClassName }}
priorityClassName: {{ .Values.backend.celery.priorityClassName }}
{{- end }}
{{- with .Values.backend.celery.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
3 changes: 3 additions & 0 deletions charts/baserow/templates/frontend/frontend-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ spec:
securityContext:
{{- toYaml . | nindent 12 }}
{{- end }}
{{- if .Values.frontend.priorityClassName }}
priorityClassName: {{ .Values.frontend.priorityClassName }}
{{- end }}
{{- with .Values.frontend.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
3 changes: 3 additions & 0 deletions charts/baserow/templates/wsgi/wsgi-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ spec:
- name: media
mountPath: {{ .Values.backend.config.media.root | quote }}
{{- end }}
{{- if .Values.backend.wsgi.priorityClassName }}
priorityClassName: {{ .Values.backend.wsgi.priorityClassName }}
{{- end }}
{{- with .Values.backend.wsgi.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
12 changes: 12 additions & 0 deletions charts/baserow/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@
}
}
},
"priorityClassName": {
"type": "string"
},
"replicaCount": {
"type": "integer"
},
Expand Down Expand Up @@ -193,6 +196,9 @@
}
}
},
"priorityClassName": {
"type": "string"
},
"replicaCount": {
"type": "integer"
},
Expand Down Expand Up @@ -598,6 +604,9 @@
}
}
},
"priorityClassName": {
"type": "string"
},
"replicaCount": {
"type": "integer"
},
Expand Down Expand Up @@ -841,6 +850,9 @@
}
}
},
"priorityClassName": {
"type": "string"
},
"replicaCount": {
"type": "integer"
},
Expand Down
12 changes: 12 additions & 0 deletions charts/baserow/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ frontend:
runAsGroup: 9999
runAsUser: 9999

# -- Pod priority class name
priorityClassName: ""

# -- Number of replicas
replicaCount: 1

Expand Down Expand Up @@ -150,6 +153,9 @@ backend:
runAsGroup: 9999
runAsUser: 9999

# -- Pod priority class name
priorityClassName: ""

# -- Number of replicas
replicaCount: 1

Expand Down Expand Up @@ -239,6 +245,9 @@ backend:
runAsGroup: 9999
runAsUser: 9999

# -- Pod priority class name
priorityClassName: ""

# -- Number of replicas
replicaCount: 1

Expand Down Expand Up @@ -476,6 +485,9 @@ backend:
runAsGroup: 9999
runAsUser: 9999

# -- Pod priority class name
priorityClassName: ""

# -- Number of replicas
replicaCount: 1

Expand Down
6 changes: 3 additions & 3 deletions charts/polr/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: polr
description: Polr is a quick, modern, and open-source link shortener
type: application
version: 1.10.1
version: 1.11.0
appVersion: "2.3.0"
home: https://github.com/christianhuth/helm-charts
icon: http://docs.polrproject.org/en/latest/logo.png
Expand All @@ -15,11 +15,11 @@ sources:
dependencies:
- name: mysql
repository: https://charts.bitnami.com/bitnami
version: 9.19.1
version: 9.22.0
annotations:
artifacthub.io/changes: |
- kind: changed
description: URL and name of Helm repository
description: bumped chart version of mysql to 9.22.0
artifacthub.io/screenshots: |
- title: Polr converts some long links into shorter ones.
url: https://selfhostedweb.org/wp-content/uploads/2017/02/shortit-1024x346.png
Expand Down

0 comments on commit ae95f10

Please sign in to comment.