Skip to content

Commit 999f626

Browse files
author
Moritz Clasmeier
committed
wip
1 parent ea00a68 commit 999f626

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

internal/clusterdefaults/clusterdefaults.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,27 +44,31 @@ func getDefaultsForClusterType(clusterType types.ClusterType) map[string]interfa
4444
// Kind clusters are local, lightweight, and don't support LoadBalancer.
4545
return map[string]interface{}{
4646
"central": map[string]interface{}{
47+
"exposure": types.ExposureNone.String(),
4748
"portForwarding": true,
4849
},
4950
}
5051

5152
case types.ClusterTypeMinikube:
5253
return map[string]interface{}{
5354
"central": map[string]interface{}{
55+
"exposure": types.ExposureNone.String(),
5456
"portForwarding": true,
5557
},
5658
}
5759

5860
case types.ClusterTypeK3s:
5961
return map[string]interface{}{
6062
"central": map[string]interface{}{
63+
"exposure": types.ExposureNone.String(),
6164
"portForwarding": true,
6265
},
6366
}
6467

6568
case types.ClusterTypeCRC:
6669
return map[string]interface{}{
6770
"central": map[string]interface{}{
71+
"exposure": types.ExposureNone.String(),
6872
"portForwarding": true,
6973
},
7074
}

0 commit comments

Comments
 (0)