Skip to content

Commit 98e08af

Browse files
johnstcnbpmct
andauthored
chore: update az aks create invocation in azure setup docs (coder#1091)
* chore: update az aks create invocation in azure setup docs * Cannot set `--network-policy azure` with `--network-plugin kubenet`: ``` (NetworkPolicyAzureNotSupportedForKubenet) NetworkPolicy azure is not supported for network plugin kubenet Code: NetworkPolicyAzureNotSupportedForKubenet Message: NetworkPolicy azure is not supported for network plugin kubenet Target: networkProfile.networkPolicy ``` * Must set the `--node-count` parameter equal to `--min-count` as it appears to default to 0 if unspecified. * fix lint error Co-authored-by: Ben <me@bpmct.net>
1 parent 36eea2b commit 98e08af

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

comparison.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,6 @@ support.
7777
> To get a free trial of Coder, please visit
7878
> [https://coder.com/trial](https://coder.com/trial).
7979
80-
> Coder's trial license does not work in an air-gapped environment. If your
81-
> organization is interested in evaluating Coder air-gapped, please contact
82-
> [sales@coder.com](mailto:sales@coder.com) to discuss license requirements.
80+
Coder's trial license does not work in an air-gapped environment. If your
81+
organization is interested in evaluating Coder air-gapped, please contact
82+
[sales@coder.com](mailto:sales@coder.com) to discuss license requirements.

setup/kubernetes/azure.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ az aks create \
108108
--location "$LOCATION" \
109109
--max-count 10 \
110110
--min-count 2 \
111+
--node-count 2 \
111112
--node-vm-size Standard_B8ms \
112-
--network-plugin "kubenet" \
113-
--network-policy "azure"
113+
--network-plugin "kubenet"
114114
```
115115

116116
> Both options include the

0 commit comments

Comments
 (0)