Skip to content

Commit

Permalink
Merge pull request #393 from rackerlabs/add-back-missing
Browse files Browse the repository at this point in the history
fix(workflows): add back incorrectly deleted files
  • Loading branch information
skrobul authored Oct 22, 2024
2 parents 06ce6e5 + 56a3fb3 commit a305a2e
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
27 changes: 27 additions & 0 deletions workflows/argo-events/eventbus/eventbus-default.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# default NATS EventBus sourced from:
# https://raw.githubusercontent.com/argoproj/argo-events/stable/examples/eventbus/native.yaml

apiVersion: argoproj.io/v1alpha1
kind: EventBus
metadata:
name: default
spec:
nats:
native:
# Optional, defaults to 3. If it is < 3, set it to 3, that is the minimal requirement.
replicas: 3
# Optional, authen strategy, "none" or "token", defaults to "none"
auth: token
# containerTemplate:
# resources:
# requests:
# cpu: "10m"
# metricsContainerTemplate:
# resources:
# requests:
# cpu: "10m"
# antiAffinity: false
# persistence:
# storageClassName: standard
# accessMode: ReadWriteOnce
# volumeSize: 10Gi
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
apiVersion: policy/v1
kind: PodDisruptionBudget
metadata:
name: eventbus-default-pdb
spec:
maxUnavailable: 1
selector:
matchLabels:
controller: eventbus-controller
eventbus-name: default

0 comments on commit a305a2e

Please sign in to comment.