-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable helm installation when deploying a non-K8s cluster #1349
Comments
@sk4zuzu this bug should go to "DoD Check" |
Couple of issues fixed here:
Here's an example how to disable helm and kubernetes and still deploy Epiphany: kind: epiphany-cluster
title: "Epiphany cluster Config"
name: any2
specification:
name: any2
admin_user:
name: ubuntu
key_path: /workspaces/epiphany/core/src/epicli/clusters/id_rsa
components:
kubernetes_master:
count: 0
kubernetes_node:
count: 0
logging:
count: 0
monitoring:
count: 0
kafka:
count: 0
postgresql:
count: 0
load_balancer:
count: 0
standalone_repository:
count: 1
configuration: default
machines:
- default-repo1
rabbitmq:
count: 3
machines:
- default-rmq1
- default-rmq2
- default-rmq3
provider: any
---
kind: configuration/feature-mapping
title: Feature mapping to roles
name: any2
specification:
roles_mapping:
standalone_repository:
- repository
- image-registry
#- helm
- firewall
provider: any
---
kind: configuration/rabbitmq
title: "RabbitMQ"
name: default
specification:
version: 3.7.10
rabbitmq_user: rabbitmq
rabbitmq_group: rabbitmq
logrotate_period: weekly
logrotate_number: 10
ulimit_open_files: 65535
amqp_port: 5672
rabbitmq_use_longname: true
rabbitmq_policies: []
rabbitmq_plugins: []
custom_configurations: []
cluster:
is_clustered: true
provider: any
---
kind: infrastructure/machine
provider: any
name: default-repo1
specification:
hostname: y1a1
ip: 10.30.2.10
---
kind: infrastructure/machine
provider: any
name: default-rmq1
specification:
hostname: y1b1
ip: 10.30.2.20
---
kind: infrastructure/machine
provider: any
name: default-rmq2
specification:
hostname: y1b2
ip: 10.30.2.21
---
kind: infrastructure/machine
provider: any
name: default-rmq3
specification:
hostname: y1b3
ip: 10.30.2.22 |
Adjusting the feature-mapping configuration I had to add the helm role to the repository host to be able to deploy a non-k8s cluster. Otherwise the installation fails on the
helm: Unpack Helm binary
task.There is no reason to install helm if we don't have kubernetes.
The text was updated successfully, but these errors were encountered: