Skip to content

Commit

Permalink
Install knative-eventing instead knative-eventing-core (#4974)
Browse files Browse the repository at this point in the history
Signed-off-by: Marta Anon <manon@redhat.com>
  • Loading branch information
maruiz93 authored Jan 13, 2025
1 parent 72486b3 commit 2124417
Showing 1 changed file with 92 additions and 2 deletions.
94 changes: 92 additions & 2 deletions components/knative-eventing/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://github.com/knative/eventing/releases/download/knative-v1.15.3/eventing-core.yaml?timeout=90s
- https://github.com/knative/eventing/releases/download/knative-v1.15.3/eventing.yaml?timeout=90s

patches:
# kube-lint fixes
Expand All @@ -19,11 +19,101 @@ patches:
- name: eventing-controller
resources:
requests:
cpu: 35m
cpu: 100m
memory: 100Mi
limits:
cpu: 150m
memory: 200Mi
- patch: |-
apiVersion: apps/v1
kind: Deployment
metadata:
name: imc-controller
namespace: knative-eventing
spec:
template:
spec:
containers:
- name: controller
resources:
requests:
cpu: 100m
memory: 100Mi
limits:
cpu: 150m
memory: 200Mi
- patch: |-
apiVersion: apps/v1
kind: Deployment
metadata:
name: imc-dispatcher
namespace: knative-eventing
spec:
template:
spec:
containers:
- name: dispatcher
resources:
requests:
cpu: 100m
memory: 100Mi
limits:
cpu: 150m
memory: 200Mi
# Requests are cpu 100m and memory 100Mi by default
- patch: |-
apiVersion: apps/v1
kind: Deployment
metadata:
name: mt-broker-controller
namespace: knative-eventing
spec:
template:
spec:
containers:
- name: mt-broker-controller
resources:
limits:
cpu: 150m
memory: 200Mi
# Requests are cpu 100m and memory 100Mi by default
- patch: |-
apiVersion: apps/v1
kind: Deployment
metadata:
name: mt-broker-filter
namespace: knative-eventing
spec:
template:
spec:
containers:
- name: filter
resources:
limits:
cpu: 150m
memory: 200Mi
# Requests are cpu 100m and memory 100Mi by default
- patch: |-
apiVersion: apps/v1
kind: Deployment
metadata:
name: mt-broker-ingress
namespace: knative-eventing
spec:
template:
spec:
containers:
- name: ingress
resources:
limits:
cpu: 150m
memory: 200Mi
# This was causing issues with kube-linter and I didn't want
# to increase its replicas to 2, so I deleted it instead
- patch: |-
Expand Down

0 comments on commit 2124417

Please sign in to comment.