Skip to content

Commit

Permalink
feat: run hermetic experimental tests
Browse files Browse the repository at this point in the history
This change adds a network config that runs ceramic one with some
experimental flags.

The first flag to test is the event validation
  • Loading branch information
nathanielc committed Oct 1, 2024
1 parent b9b50e3 commit 276e48e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions networks/experimental-rust.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
apiVersion: "keramik.3box.io/v1alpha1"
kind: Network
metadata:
name: experimental-rust
spec:
replicas: 2
ceramic:
- image: "ceramicnetwork/composedb:dev"
imagePullPolicy: Always # Ensures the image is always pulled before starting the pod
ipfs:
rust:
env:
CERAMIC_ONE_EXPERIMENTAL_FEATURES: "true"
CERAMIC_ONE_EVENT_VALIDATION: "true"
resourceLimits:
cpu: "4"
memory: "1Gi"
# Use Kubo with CAS because it still needs pubsub
cas:
casResourceLimits:
cpu: "2"
memory: "4Gi"
ipfs:
go: {}
monitoring:
namespaced: true

0 comments on commit 276e48e

Please sign in to comment.