Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,29 @@
</label>
</div>
</div>
<div class="col span-6">
<label class="acc-label">
{{t "clusterNew.googlegke.enableNetworkPolicyConfig.label"}}
</label>
<div class="form-control-static">
<label class={{concat (if editing "text-muted") " mr-20 hand"}}>
{{radio-button
selection=config.enableNetworkPolicyConfig
value=true
disabled=editing
}} {{t "generic.enabled"}}
</label>
<label class={{concat (if editing "text-muted") " hand"}}>
{{radio-button
selection=config.enableNetworkPolicyConfig
value=false
disabled=editing
}} {{t "generic.disabled"}}
</label>
</div>
</div>
</div>
<div class="row">
<div class="col span-6">
<label class="acc-label">
{{t "clusterNew.googlegke.maintenanceWindow.label"}}
Expand Down
2 changes: 2 additions & 0 deletions translations/en-us.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3689,6 +3689,8 @@ clusterNew:
label: Horizontal Pod Autoscaling
enableNodepoolAutoscaling:
label: Node Pool Autoscaling
enableNetworkPolicyConfig:
label: Network Policies
minNodeCount:
label: Minimum Node Count
required: '"Minimum Node Count" is required'
Expand Down