Skip to content

Commit

Permalink
fix: missing cloud profile network isolation (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
vknabel authored Mar 14, 2024
1 parent bc63610 commit 6b2d664
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ spec:
{% for id, partition_config in gardener_cloud_profile_partitions.items() %}
{{ id }}:
firewallTypes: {{ partition_config.get('default-machine-types', {}).get('firewall', []) | to_json }}
{% if 'network-isolation' in partition_config %}
networkIsolation: {{ partition_config.get('network-isolation') | to_json }}
{% endif %}
{% endfor %}
kubernetes: {{ gardener_cloud_profile_kubernetes | to_json }}
machineImages: {{ gardener_cloud_profile_machine_images | machine_images_for_cloud_profile(cris=gardener_os_cri_mapping) | to_json }}
Expand Down

0 comments on commit 6b2d664

Please sign in to comment.