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
4 changes: 2 additions & 2 deletions components/mintmaker/production/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ commonAnnotations:
argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true

patches:
- path: pipelines-as-code-secret-patch.yaml
- path: pipelines-as-code-secret-path.yaml
target:
name: pipelines-as-code-secret
kind: ExternalSecret
group: external-secrets.io
version: v1beta1
- path: manager_patch.yaml
- path: manager-set-resources-patch.yaml

configurations:
- kustomizeconfig.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
cpu: 500m
memory: 8Gi
requests:
cpu: 100m
cpu: 500m
memory: 8Gi
env:
- name: GOMEMLIMIT
Expand Down
3 changes: 2 additions & 1 deletion components/mintmaker/staging/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ commonAnnotations:
argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true

patches:
- path: manager_patch.yaml
- path: manager-set-resources-patch.yaml
- path: manager-enable-pprof-patch.yaml

configurations:
- kustomizeconfig.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,6 @@ spec:
- --health-probe-bind-address=:8081
- --metrics-secure=false
- --pprof-bind-address=:6060
resources:
limits:
cpu: 500m
memory: 2048Mi
requests:
cpu: 100m
memory: 256Mi
env:
- name: ENABLE_PROFILING
value: "true"
17 changes: 17 additions & 0 deletions components/mintmaker/staging/base/manager-set-resources-patch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: controller-manager
namespace: system
spec:
template:
spec:
containers:
- name: manager
resources:
limits:
cpu: 500m
memory: 2048Mi
requests:
cpu: 500m
memory: 2048Mi
Loading