5 Commits

Author SHA1 Message Date
96ef03057d merge upstream 2025-09-28 01:58:59 +00:00
e7b3ed084a merge upstream 2025-09-24 18:52:27 +00:00
81fb896135 merge upstream 2025-09-17 03:22:16 +00:00
bf56769a35 merge upstream 2025-09-13 11:20:07 +00:00
b8058bee05 Add dnsConfig to helm chart 2025-09-04 11:07:26 -03:00
3 changed files with 7 additions and 1 deletions

View File

@@ -11,7 +11,7 @@ on:
jobs: jobs:
check-and-test: check-and-test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: commitlint/commitlint:20.1.0 container: commitlint/commitlint:19.9.1
steps: steps:
- uses: actions/checkout@v5 - uses: actions/checkout@v5
- name: check PR title - name: check PR title

View File

@@ -117,6 +117,10 @@ spec:
tolerations: tolerations:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
{{- if .Values.statefulset.dnsConfig }}
dnsConfig:
{{- toYaml .Values.statefulset.dnsConfig | nindent 8 }}
{{- end }}
volumes: volumes:
- name: act-runner-config - name: act-runner-config
configMap: configMap:

View File

@@ -11,6 +11,7 @@
## @param statefulset.resources Act runner resources ## @param statefulset.resources Act runner resources
## @param statefulset.nodeSelector NodeSelector for the statefulset ## @param statefulset.nodeSelector NodeSelector for the statefulset
## @param statefulset.tolerations Tolerations for the statefulset ## @param statefulset.tolerations Tolerations for the statefulset
## @param statefulset.dnsConfig dnsConfig for the statefulset
## @param statefulset.affinity Affinity for the statefulset ## @param statefulset.affinity Affinity for the statefulset
## @param statefulset.extraVolumes Extra volumes for the statefulset ## @param statefulset.extraVolumes Extra volumes for the statefulset
## @param statefulset.actRunner.registry image registry, e.g. gcr.io,docker.io ## @param statefulset.actRunner.registry image registry, e.g. gcr.io,docker.io
@@ -43,6 +44,7 @@ statefulset:
resources: {} resources: {}
nodeSelector: {} nodeSelector: {}
tolerations: [] tolerations: []
dnsConfig: {}
affinity: {} affinity: {}
extraVolumes: [] extraVolumes: []