Skip to content

Commit 6cb04e9

Browse files
Merge pull request #2836 from DougAnsonAustinTX/helm-minor-update-1
minor fix to the tainting section
2 parents 481221b + 0617c47 commit 6cb04e9

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

content/learning-paths/servers-and-cloud-computing/helm-on-gcp/gke-cluster-for-helm.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,23 +154,28 @@ gke-helm-arm64-cluster-default-pool-f4ab8a2d-5ldp Ready <none> 5h54m v1
154154

155155
All nodes should be in **Ready** state and the Kubernetes control plane should be accessible.
156156

157-
### Taint the cluster nodes for arm64 support
157+
### Remove the taint on the cluster nodes for arm64 support
158158

159-
Taint the nodes to ensure proper scheduling on arm64 VMs. For each node starting with **gke**, run the following taint command.
159+
Remove the taint on the nodes to ensure proper scheduling on arm64 VMs. For each node starting with **gke**, run the following taint command. For example using the node IDs in the output above:
160160

161161
{{% notice Note %}}
162162
Note the required "-" at the end... its needed!
163163
{{% /notice %}}
164164

165-
For example using the node IDs in the output above:
166-
167165
```console
168166
kubectl taint nodes gke-helm-arm64-cluster-default-pool-f4ab8a2d-5h6f kubernetes.io/arch=arm64:NoSchedule-
169167
kubectl taint nodes gke-helm-arm64-cluster-default-pool-f4ab8a2d-5ldp kubernetes.io/arch=arm64:NoSchedule-
170168
```
171169

172170
Replace the node names with your actual node names from the previous command output.
173171

172+
The output should be similar to:
173+
174+
```output
175+
node/gke-helm-arm64-cluster-default-pool-f4ab8a2d-5h6f untainted
176+
node/gke-helm-arm64-cluster-default-pool-f4ab8a2d-5ldp untainted
177+
```
178+
174179
### Create hyperdisk storage class for our cluster
175180

176181
In order to use the c4a architecture with our cluster, a new storage class must be created.

0 commit comments

Comments
 (0)