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
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ patches:
- op: replace
path: /metadata/name
value: apicurio-registry-operator
# Set watched namespaces (replace OLM valueFrom with direct value)
# Set resources, startup probe, and watched namespaces (replace OLM valueFrom with direct value)
- target:
kind: Deployment
name: apicurio-registry-operator
labelSelector: app.kubernetes.io/name=apicurio-registry-operator
patch: |-
apiVersion: apps/v1
kind: Deployment
Expand All @@ -43,11 +43,14 @@ patches:
- name: apicurio-registry-operator
resources:
requests:
cpu: 200m
memory: 256Mi
cpu: 500m
memory: 512Mi
limits:
cpu: 200m
memory: 256Mi
cpu: 500m
memory: 512Mi
startupProbe:
periodSeconds: 10
failureThreshold: 30
env:
- name: APICURIO_OPERATOR_WATCHED_NAMESPACES
value: ''
Expand Down
2 changes: 1 addition & 1 deletion docs/overlays/metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title = 'Metrics'
weight = 1
cpu_total = '3 CPU cores'
memory_total = '5 GiB'
memory_total = '5.5 GiB'
+++

# Metrics Overlay
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ LOCAL_DIR="${LOCAL_DIR:-}"
REPO="${REPO:-streamshub/developer-quickstart}"
REF="${REF:-main}"
OVERLAY="${OVERLAY:-}"
TIMEOUT="${TIMEOUT:-120s}"
TIMEOUT="${TIMEOUT:-180s}"

# Color output helpers
RED='\033[0;31m'
Expand Down
Loading