datopian / ckan-cloud-operator

CKAN Cloud operator manages, provisions and configures Ckan Cloud instances and related infrastructure.
MIT License
19 stars 14 forks source link

Configure solr images #154

Closed zelima closed 2 years ago

zelima commented 2 years ago

let the solr images be configurable from interactive.yaml or user prompt. both solrcloud and zookeepr images can be passed from interactive.yaml on cluster initialize together with other configurations

//interactive.yaml
default:
  ...
  secrets:
    solr-config:
      self-hosted: y
      num-shards: "1"
      replication-factor: "3"
      sc-cpu: "1"
      sc-mem: 3Gi
      zk-cpu: "0.5"
      zk-mem: 1Gi
      sc-cpu-limit: "2"
      sc-mem-limit: 7Gi
      sc-image: solr:5.5.6
      zk-cpu-limit: "1"
      zk-mem-limit: 2Gi

p.s. also get rid of helm init for helm3