Parameters

The parent key for all of the following parameters is eventrouter.

namespace

type

string

default

syn-eventrouter

The namespace in which to deploy this component.

image

type

dict

default
eventrouter:
  registry: "ghcr.io"
  image: "projectsyn/component-eventrouter"
  tag: v0.3

The images to use for the eventrouter pods.

The eventrouter image is mirrored from the upstream image gcr.io/heptio-images/eventrouter:v0.3 as Heptio is long gone and the Google Container Registry (gcr) is to be shut down in March 2025.

resources

type

dict

default
components:
  eventrouter:
    resources:
      eventrouter:
        requests:
          cpu: 50m
          memory: 128Mi
        limits:
          cpu: 200m
          memory: 256Mi

Configure resource requests and limits for eventrouter container.

spec

type

dict

default
components:
  eventrouter:
    spec:
      securityContext:
        runAsUser: 10001

Configure additional spec for deployment.

Example

components:
  eventrouter:
    namespace: example-namespace
    ~spec: {}