Skip to content

Commit

Permalink
Fix provisioner example, swapping OS and Arch (#690)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwagner5 committed Sep 20, 2021
1 parent 4e9fb54 commit 8be20dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/content/en/docs/provisioner-crd.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ spec:

# Constrain architectures, or use choose from all if unconstrained (recommended)
# Overriden by pod.spec.nodeSelector["kubernetes.io/arch"]
architectures: [ "linux" ]
architectures: [ "amd64" ]

# Constrain operating systems, or use choose from all if unconstrained (recommended)
# Overriden by pod.spec.nodeSelector["kubernetes.io/os"]
operatingSystems: [ "amd64" ]
operatingSystems: [ "linux" ]

# These fields vary per cloud provider, see your cloud provider specific documentation
provider: {}
Expand Down

0 comments on commit 8be20dc

Please sign in to comment.