Skip to content

Siddhi Operator Release 0.2.0-alpha

Pre-release
Pre-release
Compare
Choose a tag to compare
@mohanvive mohanvive released this 30 Aug 08:27
· 63 commits to master since this release
4b18b34

Installing

Docker Image:

siddhiio/siddhi-operator:0.2.0-alpha
kubectl apply -f https://github.com/siddhi-io/siddhi-operator/releases/download/v0.2.0-alpha/00-prereqs.yaml
kubectl apply -f https://github.com/siddhi-io/siddhi-operator/releases/download/v0.2.0-alpha/01-siddhi-operator.yaml

Highlights

Changed

  1. Change YAML naming convention of the messaging system and persistent volume claim.
    • Change clusterId -> streamingClusterId

    • Change persistentVolume -> persistentVolumeClaim

      messagingSystem:
          type: nats
          config: 
          bootstrapServers: 
              - "nats://nats-siddhi:4222"
          streamingClusterId: stan-siddhi
      
      persistentVolumeClaim: 
          accessModes: 
          - ReadWriteOnce
          resources: 
          requests: 
              storage: 1Gi
          storageClassName: standard
          volumeMode: Filesystem

Bug Fixes

  1. Fix for segmentation fault error when creating PVC automatically (#86)