tolerate arm64 in tools deployments and jobs

This commit is contained in:
Ryan Richard
2023-10-09 10:00:34 -07:00
parent 5852a9e0ab
commit bbf4412ff3
4 changed files with 38 additions and 2 deletions
+10 -1
View File
@@ -1,4 +1,4 @@
#! Copyright 2020-2022 the Pinniped contributors. All Rights Reserved.
#! Copyright 2020-2023 the Pinniped contributors. All Rights Reserved.
#! SPDX-License-Identifier: Apache-2.0
#@ load("@ytt:data", "data")
@@ -94,6 +94,15 @@ spec:
- name: certs
secret:
secretName: certs
tolerations:
- key: kubernetes.io/arch
effect: NoSchedule
operator: Equal
value: amd64 #! Allow running on amd64 nodes.
- key: kubernetes.io/arch
effect: NoSchedule
operator: Equal
value: arm64 #! Also allow running on arm64 nodes.
---
apiVersion: v1
kind: Service