File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ resource "kubernetes_manifest" "github_ent_runners" {
18
18
group = each.value.group
19
19
imagePullPolicy = " IfNotPresent"
20
20
securityContext = {
21
- fsGroup = 1001
21
+ fsGroup = 1000
22
22
}
23
23
labels = [each.value.label]
24
24
resources = each.value.resources
@@ -29,7 +29,11 @@ resource "kubernetes_manifest" "github_ent_runners" {
29
29
mountPath = " /home/runner/.docker/config.json"
30
30
subPath = " config.json"
31
31
name = " docker-secret"
32
- }
32
+ },
33
+ {
34
+ mountPath = " /home/runner/.docker"
35
+ name = " docker-config-volume"
36
+ },
33
37
]
34
38
volumes = [
35
39
{
@@ -43,6 +47,10 @@ resource "kubernetes_manifest" "github_ent_runners" {
43
47
}
44
48
]
45
49
}
50
+ },
51
+ {
52
+ name = " docker-config-volume"
53
+ emptyDir = {}
46
54
}
47
55
]
48
56
You can’t perform that action at this time.
0 commit comments