Skip to content

Commit

Permalink
fix: Remove default apps in cluster creator
Browse files Browse the repository at this point in the history
  • Loading branch information
dsieradzki committed Apr 13, 2023
1 parent eb7bff9 commit 6e21bea
Showing 1 changed file with 1 addition and 22 deletions.
23 changes: 1 addition & 22 deletions makoon/src/operator/generator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,28 +37,7 @@ impl DefaultClusterConfigurationGenerator {
},
node_username: "makoon".to_string(),
node_password: "makoon".to_string(),
helm_apps: vec![
HelmApp {
id: "8246fb13-721c-47d3-87ad-a6bd3aca7961".to_string(),
chart_name: "metallb".to_string(),
chart_version: "".to_string(),
repository: "https://metallb.github.io/metallb".to_string(),
release_name: "metallb".to_string(),
namespace: "metallb-system".to_string(),
values: "".to_string(),
wait: false,
},
HelmApp {
id: "123".to_string(),
chart_name: "ingress-nginx".to_string(),
chart_version: "".to_string(),
repository: "https://kubernetes.github.io/ingress-nginx".to_string(),
release_name: "ingress-nginx".to_string(),
namespace: "ingress-nginx".to_string(),
values: "controller:\n ingressClassResource:\n name: public".to_string(),
wait: false,
},
],
helm_apps: vec![],
cluster_resources: vec![],
disk_size: 32,
nodes: vec![ClusterNode {
Expand Down

0 comments on commit 6e21bea

Please sign in to comment.