Merge pull request #1703 from vmware-tanzu/tools_tolerations
tolerate arm64 in tools deployments and jobs
This commit is contained in:
commit
bc1593e833
@ -1,4 +1,4 @@
|
|||||||
#! Copyright 2020-2021 the Pinniped contributors. All Rights Reserved.
|
#! Copyright 2020-2023 the Pinniped contributors. All Rights Reserved.
|
||||||
#! SPDX-License-Identifier: Apache-2.0
|
#! SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
#@ load("@ytt:data", "data")
|
#@ load("@ytt:data", "data")
|
||||||
@ -126,3 +126,12 @@ spec:
|
|||||||
- name: certs
|
- name: certs
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
restartPolicy: Never
|
restartPolicy: Never
|
||||||
|
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.
|
||||||
|
@ -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
|
#! SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
#@ load("@ytt:data", "data")
|
#@ load("@ytt:data", "data")
|
||||||
@ -94,6 +94,15 @@ spec:
|
|||||||
- name: certs
|
- name: certs
|
||||||
secret:
|
secret:
|
||||||
secretName: certs
|
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
|
apiVersion: v1
|
||||||
kind: Service
|
kind: Service
|
||||||
|
@ -277,6 +277,15 @@ spec:
|
|||||||
- name: additional-schema
|
- name: additional-schema
|
||||||
secret:
|
secret:
|
||||||
secretName: ldap-server-additional-schema-ldif-files
|
secretName: ldap-server-additional-schema-ldif-files
|
||||||
|
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
|
apiVersion: v1
|
||||||
kind: Service
|
kind: Service
|
||||||
|
@ -51,6 +51,15 @@ spec:
|
|||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: log-dir
|
- name: log-dir
|
||||||
mountPath: "/var/log/squid/"
|
mountPath: "/var/log/squid/"
|
||||||
|
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
|
apiVersion: v1
|
||||||
kind: Service
|
kind: Service
|
||||||
|
Loading…
Reference in New Issue
Block a user