项目作者: ctron

项目描述 :
A Kubernetes Operator for Eclipse Ditto™
高级语言: Rust
项目地址: git://github.com/ctron/ditto-operator.git
创建时间: 2020-06-17T15:24:53Z
项目社区:https://github.com/ctron/ditto-operator

开源协议:Eclipse Public License 2.0

下载


Operator for Eclipse Ditto™

CI

Install the operator

You need to install the operator. Once you have installed the operator, you can create a new Ditto instance by
create a new custom resource of type Ditto.

Using OperatorHub

The operator is available on OperatorHub.

Using Helm

You can also install the operator using Helm:

  1. helm install ditto-operator ./helm/ditto-operator

MongoDB

You need to provide a MongoDB instance. You can easily deploy one with
the following Helm chart:

  1. helm repo add bitnami https://charts.bitnami.com/bitnami
  2. helm install mongodb bitnami/mongodb --set podSecurityContext.enabled=false --set containerSecurityContext.enabled=false --set auth.rootPassword=admin123456 --set auth.enabled=false

Create Ditto instance

Create a new Ditto instance:

  1. apiVersion: iot.eclipse.org/v1alpha1
  2. kind: Ditto
  3. metadata:
  4. name: test
  5. spec:
  6. mongoDb:
  7. host: mongodb