File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030 kubenixCI1 = kubenixInstance {
3131 module . imports = [
3232 ./kubenix/ci
33- {
34- nix-csi . cache . enable = true ;
35- nix-csi . builders . enable = true ;
36- }
3733 ] ;
3834 } ;
3935 kubenixCI2 = kubenixInstance {
Original file line number Diff line number Diff line change 1818 { ... } :
1919 {
2020 options = {
21- enable = lib . mkEnableOption "builder pods" // {
21+ enable = ( lib . mkEnableOption "builder pods" ) // {
2222 default = cfg . builders . enable ;
2323 } ;
2424 replicas = lib . mkOption {
5555 ) ;
5656 in
5757 {
58- enable = lib . mkEnableOption "builder pods" ;
58+ enable = ( lib . mkEnableOption "builder pods" ) // {
59+ default = true ;
60+ } ;
5961 loadBalancerPort = lib . mkOption {
6062 description = "Port to run public SSH on for builder jumpbox" ;
6163 type = lib . types . nullOr lib . types . ints . positive ;
Original file line number Diff line number Diff line change 1313in
1414{
1515 options . nix-csi . cache = {
16- enable = lib . mkEnableOption "cache" ;
16+ enable = ( lib . mkEnableOption "cache" ) // {
17+ default = true ;
18+ } ;
1719 nixConfig = lib . mkOption {
1820 description = "nix.conf for cache pod" ;
1921 type = ( import ./nixOptions.nix ) curPkgs ;
You can’t perform that action at this time.
0 commit comments