Merge branch 'master' of github.com:Budibase/budibase into BUDI-7656/add-migration
This commit is contained in:
commit
c509da1f22
|
@ -0,0 +1,38 @@
|
||||||
|
name: PR labeler
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [opened, synchronize]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
size-labeler:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: codelytv/pr-size-labeler@v1
|
||||||
|
with:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
xs_max_size: "10"
|
||||||
|
s_max_size: "100"
|
||||||
|
m_max_size: "500"
|
||||||
|
l_max_size: "1000"
|
||||||
|
fail_if_xl: "false"
|
||||||
|
files_to_ignore: "yarn.lock"
|
||||||
|
|
||||||
|
team-labeler:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event.action == 'opened' }}
|
||||||
|
steps:
|
||||||
|
- uses: rodrigoarias/auto-label-per-user@v1.0.0
|
||||||
|
with:
|
||||||
|
git-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
user-team-map: |
|
||||||
|
{
|
||||||
|
"adrinr": "firestorm",
|
||||||
|
"samwho": "firestorm",
|
||||||
|
"pclmnt": "firestorm",
|
||||||
|
"mike12345567": "firestorm"
|
||||||
|
}
|
|
@ -202,6 +202,13 @@ spec:
|
||||||
- name: {{ .name }}
|
- name: {{ .name }}
|
||||||
value: {{ .value | quote }}
|
value: {{ .value | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- range .Values.services.apps.extraEnvFromSecret}}
|
||||||
|
- name: {{ .name }}
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: {{ .secretName }}
|
||||||
|
key: {{ .secretKey | quote }}
|
||||||
|
{{- end}}
|
||||||
image: budibase/apps:{{ .Values.globals.appVersion | default .Chart.AppVersion }}
|
image: budibase/apps:{{ .Values.globals.appVersion | default .Chart.AppVersion }}
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
{{- if .Values.services.apps.startupProbe }}
|
{{- if .Values.services.apps.startupProbe }}
|
||||||
|
|
|
@ -201,6 +201,13 @@ spec:
|
||||||
- name: {{ .name }}
|
- name: {{ .name }}
|
||||||
value: {{ .value | quote }}
|
value: {{ .value | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- range .Values.services.automationWorkers.extraEnvFromSecret}}
|
||||||
|
- name: {{ .name }}
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: {{ .secretName }}
|
||||||
|
key: {{ .secretKey | quote }}
|
||||||
|
{{- end}}
|
||||||
|
|
||||||
image: budibase/apps:{{ .Values.globals.appVersion | default .Chart.AppVersion }}
|
image: budibase/apps:{{ .Values.globals.appVersion | default .Chart.AppVersion }}
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
|
@ -272,4 +279,4 @@ spec:
|
||||||
{{- toYaml .Values.services.automationWorkers.extraVolumes | nindent 8 }}
|
{{- toYaml .Values.services.automationWorkers.extraVolumes | nindent 8 }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
status: {}
|
status: {}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -188,6 +188,13 @@ spec:
|
||||||
- name: {{ .name }}
|
- name: {{ .name }}
|
||||||
value: {{ .value | quote }}
|
value: {{ .value | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- range .Values.services.worker.extraEnvFromSecret}}
|
||||||
|
- name: {{ .name }}
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: {{ .secretName }}
|
||||||
|
key: {{ .secretKey | quote }}
|
||||||
|
{{- end}}
|
||||||
image: budibase/worker:{{ .Values.globals.appVersion | default .Chart.AppVersion }}
|
image: budibase/worker:{{ .Values.globals.appVersion | default .Chart.AppVersion }}
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
{{- if .Values.services.worker.startupProbe }}
|
{{- if .Values.services.worker.startupProbe }}
|
||||||
|
|
|
@ -240,6 +240,13 @@ services:
|
||||||
# -- Extra environment variables to set for apps pods. Takes a list of
|
# -- Extra environment variables to set for apps pods. Takes a list of
|
||||||
# name=value pairs.
|
# name=value pairs.
|
||||||
extraEnv: []
|
extraEnv: []
|
||||||
|
# -- Name of the K8s Secret in the same namespace which contains the extra environment variables.
|
||||||
|
# This can be used to avoid storing sensitive information in the values.yaml file.
|
||||||
|
extraEnvFromSecret: []
|
||||||
|
# - name: MY_SECRET_KEY
|
||||||
|
# secretName : my-secret
|
||||||
|
# secretKey: my-secret-key
|
||||||
|
|
||||||
# -- Startup probe configuration for apps pods. You shouldn't need to
|
# -- Startup probe configuration for apps pods. You shouldn't need to
|
||||||
# change this, but if you want to you can find more information here:
|
# change this, but if you want to you can find more information here:
|
||||||
# <https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/>
|
# <https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/>
|
||||||
|
@ -323,6 +330,13 @@ services:
|
||||||
# -- Extra environment variables to set for automation worker pods. Takes a list of
|
# -- Extra environment variables to set for automation worker pods. Takes a list of
|
||||||
# name=value pairs.
|
# name=value pairs.
|
||||||
extraEnv: []
|
extraEnv: []
|
||||||
|
# -- Name of the K8s Secret in the same namespace which contains the extra environment variables.
|
||||||
|
# This can be used to avoid storing sensitive information in the values.yaml file.
|
||||||
|
extraEnvFromSecret: []
|
||||||
|
# - name: MY_SECRET_KEY
|
||||||
|
# secretName : my-secret
|
||||||
|
# secretKey: my-secret-key
|
||||||
|
|
||||||
# -- Startup probe configuration for automation worker pods. You shouldn't
|
# -- Startup probe configuration for automation worker pods. You shouldn't
|
||||||
# need to change this, but if you want to you can find more information
|
# need to change this, but if you want to you can find more information
|
||||||
# here:
|
# here:
|
||||||
|
@ -408,6 +422,13 @@ services:
|
||||||
# -- Extra environment variables to set for worker pods. Takes a list of
|
# -- Extra environment variables to set for worker pods. Takes a list of
|
||||||
# name=value pairs.
|
# name=value pairs.
|
||||||
extraEnv: []
|
extraEnv: []
|
||||||
|
# -- Name of the K8s Secret in the same namespace which contains the extra environment variables.
|
||||||
|
# This can be used to avoid storing sensitive information in the values.yaml file.
|
||||||
|
extraEnvFromSecret: []
|
||||||
|
# - name: MY_SECRET_KEY
|
||||||
|
# secretName : my-secret
|
||||||
|
# secretKey: my-secret-key
|
||||||
|
|
||||||
# -- Startup probe configuration for worker pods. You shouldn't need to
|
# -- Startup probe configuration for worker pods. You shouldn't need to
|
||||||
# change this, but if you want to you can find more information here:
|
# change this, but if you want to you can find more information here:
|
||||||
# <https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/>
|
# <https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit d3c3077011a8e20ed3c48dcd6301caca4120b6ac
|
Subproject commit 5189b83bea1868574ff7f4c51fe5db38a11badb8
|
Loading…
Reference in New Issue