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
4 changed files with 8 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ on:
jobs:
changelog:
runs-on: ubuntu-latest
container: docker.io/thegeeklab/git-sv:2.0.6
container: docker.io/thegeeklab/git-sv:2.0.5
steps:
- name: install tools
run: |

View File

@@ -10,7 +10,7 @@ on:
env:
# renovate: datasource=github-releases depName=helm-unittest/helm-unittest
HELM_UNITTEST_VERSION: "v1.0.3"
HELM_UNITTEST_VERSION: "v1.0.1"
jobs:
check-and-test:

View File

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

View File

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