Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .tilt-support
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ COPY {} /
live_update=[
sync('.tiltbuild/bin/{}'.format(binary_name), '/{}'.format(binary_name)),
],
restart_file="/.tilt_restart_proc",
# The command to run in the container.
entrypoint=entrypoint,
)
Expand Down
5 changes: 5 additions & 0 deletions config/base/catalogd/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,11 @@ spec:
volumeMounts:
- name: cache
mountPath: /var/cache/
- name: tmp
mountPath: /tmp
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
capabilities:
drop:
- ALL
Expand All @@ -80,3 +83,5 @@ spec:
volumes:
- name: cache
emptyDir: {}
- name: tmp
emptyDir: {}
7 changes: 5 additions & 2 deletions config/base/operator-controller/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,11 @@ spec:
volumeMounts:
- name: cache
mountPath: /var/cache
- name: tmp
mountPath: /tmp
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
capabilities:
drop:
- "ALL"
Expand All @@ -69,8 +72,6 @@ spec:
port: 8081
initialDelaySeconds: 5
periodSeconds: 10
# TODO(user): Configure the resources accordingly based on the project requirements.
# More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
resources:
requests:
cpu: 10m
Expand All @@ -81,3 +82,5 @@ spec:
volumes:
- name: cache
emptyDir: {}
- name: tmp
emptyDir: { }
Loading