mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-13 00:20:07 +01:00
feat(istio): fixes and add simple test
This commit is contained in:
parent
33a344119b
commit
e1e6173a2c
6 changed files with 1112 additions and 1040 deletions
2074
istio/default.nix
2074
istio/default.nix
File diff suppressed because it is too large
Load diff
|
|
@ -317,7 +317,7 @@ let
|
|||
") value.config)}};
|
||||
"}};
|
||||
") definitions)}
|
||||
};
|
||||
} // (import ./overrides.nix {inheirt definitions lib;}));
|
||||
in {
|
||||
kubernetes.customResources = [
|
||||
${concatMapStrings (resource: ''{
|
||||
|
|
|
|||
15
istio/overrides.nix
Normal file
15
istio/overrides.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ lib, definitions }:
|
||||
|
||||
with lib;
|
||||
|
||||
{
|
||||
"istio_networking_v1alpha3_StringMatch" = recursiveUpdate (recursiveUpdate
|
||||
definitions."istio_networking_v1alpha3_StringMatch_Exact"
|
||||
definitions."istio_networking_v1alpha3_StringMatch_Prefix"
|
||||
)
|
||||
definitions."istio_networking_v1alpha3_StringMatch_Regex";
|
||||
|
||||
"istio_networking_v1alpha3_PortSelector" = recursiveUpdate
|
||||
definitions."istio_networking_v1alpha3_PortSelector_Name"
|
||||
definitions."istio_networking_v1alpha3_PortSelector_Number";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue