Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update Reloader to v1.2.0 #413

Merged
merged 1 commit into from
Dec 4, 2024
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
2 changes: 1 addition & 1 deletion reloader/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.DEFAULT_GOAL := get-upstream
.PHONY: get-upstream

TAG=v1.1.0
TAG=v1.2.0

get-upstream:
curl -sL https://raw.githubusercontent.com/stakater/Reloader/${TAG}/deployments/kubernetes/manifests/deployment.yaml | grep -v namespace > kube-system/deployment.yaml
Expand Down
11 changes: 10 additions & 1 deletion reloader/kube-system/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,20 @@ spec:
app: reloader-reloader
spec:
containers:
- image: "ghcr.io/stakater/reloader:latest"
- image: "ghcr.io/stakater/reloader:v1.2.0"
imagePullPolicy: IfNotPresent
name: reloader-reloader
env:
- name: GOMAXPROCS
valueFrom:
resourceFieldRef:
resource: limits.cpu
divisor: '1'
- name: GOMEMLIMIT
valueFrom:
resourceFieldRef:
resource: limits.memory
divisor: '1'
ports:
- name: http
containerPort: 9090
Expand All @@ -50,6 +52,13 @@ spec:
successThreshold: 1
initialDelaySeconds: 10
securityContext: {}
resources:
limits:
cpu: "1"
memory: 512Mi
requests:
cpu: 10m
memory: 512Mi
securityContext:
runAsNonRoot: true
runAsUser: 65534
Expand Down
6 changes: 0 additions & 6 deletions reloader/kube-system/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,3 @@ resources:
patchesStrategicMerge:
- clusterrolebinding-patch.yaml
- deployment-patch.yaml

# should be removed once this issue is fixed in next version
# https://github.com/stakater/Reloader/issues/753
images:
- name: ghcr.io/stakater/reloader
newTag: v1.1.0
Loading