4 Commits

Author SHA1 Message Date
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 10 additions and 4 deletions

8
pnpm-lock.yaml generated
View File

@@ -220,8 +220,8 @@ packages:
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
lru-cache@11.2.2:
resolution: {integrity: sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==}
lru-cache@11.2.1:
resolution: {integrity: sha512-r8LA6i4LP4EeWOhqBaZZjDWwehd1xUJPCJd9Sv300H0ZmcUER4+JPh7bqqZeqs1o5pgtgvXm+d9UGrB5zZGDiQ==}
engines: {node: 20 || >=22}
markdown-it@14.1.0:
@@ -610,7 +610,7 @@ snapshots:
lodash@4.17.21: {}
lru-cache@11.2.2: {}
lru-cache@11.2.1: {}
markdown-it@14.1.0:
dependencies:
@@ -864,7 +864,7 @@ snapshots:
path-scurry@2.0.0:
dependencies:
lru-cache: 11.2.2
lru-cache: 11.2.1
minipass: 7.1.2
punycode.js@2.3.1: {}

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: []