All-in-One

Cloudify Manager AIO Helm Chart (Community Version)

Description

A Helm chart for Cloudify Manager is:

This is the best and simplest way to make yourself familiar with Cloudify, running a Cloudify Manager AIO in a matter of minutes.

Installation

helm repo add cloudify-helm https://cloudify-cosmo.github.io/cloudify-helm

helm install cloudify-manager-aio cloudify-helm/cloudify-manager-aio

Configuration Options for values.yaml:

Image:

image:
  repository: "cloudifyplatform/community-cloudify-manager-aio"
  tag: "latest"
  pullPolicy: IfNotPresent

Service:

service:
  type: LoadBalancer
  name: cloudify-manager-aio
  rabbitmq:
    port: 5671
  http:
    port: 80
  https:
    port: 443
  internal_rest:
    port: 53333

node selector - select on which nodes cloudify manager AIO may run:

nodeSelector: {}
# nodeSelector:
#   nodeType: onDemand 

resources requests and limits:

resources:
  requests:
    memory: 0.5Gi
    cpu: 0.5

readiness probe may be enabled/disabled

readinessProbe:
  enabled: true
  port: 80
  path: /console
  initialDelaySeconds: 10