File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
operator-controller/manager Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ COPY {} /
67
67
live_update=[
68
68
sync('.tiltbuild/bin/{}'.format(binary_name), '/{}'.format(binary_name)),
69
69
],
70
+ restart_file="/.tilt_restart_proc",
70
71
# The command to run in the container.
71
72
entrypoint=entrypoint,
72
73
)
Original file line number Diff line number Diff line change 52
52
volumeMounts :
53
53
- name : cache
54
54
mountPath : /var/cache/
55
+ - name : tmp
56
+ mountPath : /tmp
55
57
securityContext :
56
58
allowPrivilegeEscalation : false
59
+ readOnlyRootFilesystem : true
57
60
capabilities :
58
61
drop :
59
62
- ALL
80
83
volumes :
81
84
- name : cache
82
85
emptyDir : {}
86
+ - name : tmp
87
+ emptyDir : {}
Original file line number Diff line number Diff line change 52
52
volumeMounts :
53
53
- name : cache
54
54
mountPath : /var/cache
55
+ - name : tmp
56
+ mountPath : /tmp
55
57
securityContext :
56
58
allowPrivilegeEscalation : false
59
+ readOnlyRootFilesystem : true
57
60
capabilities :
58
61
drop :
59
62
- " ALL"
69
72
port : 8081
70
73
initialDelaySeconds : 5
71
74
periodSeconds : 10
72
- # TODO(user): Configure the resources accordingly based on the project requirements.
73
- # More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
74
75
resources :
75
76
requests :
76
77
cpu : 10m
81
82
volumes :
82
83
- name : cache
83
84
emptyDir : {}
85
+ - name : tmp
86
+ emptyDir : { }
You can’t perform that action at this time.
0 commit comments