2021-05-15 10:58:23 +02:00
|
|
|
# Copyright 2021 Google LLC
|
2020-04-22 10:38:16 +02:00
|
|
|
#
|
|
|
|
# Licensed under the the Apache License v2.0 with LLVM Exceptions (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# https://llvm.org/LICENSE.txt
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2020-07-21 15:20:53 +02:00
|
|
|
apiVersion: apps/v1
|
2020-04-22 10:38:16 +02:00
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
2020-08-27 14:44:56 +02:00
|
|
|
name: linux-agents
|
2020-04-22 10:38:16 +02:00
|
|
|
namespace: buildkite
|
|
|
|
spec:
|
2021-05-18 16:20:27 +02:00
|
|
|
replicas: 5
|
2020-07-21 17:42:02 +02:00
|
|
|
strategy:
|
|
|
|
rollingUpdate:
|
|
|
|
maxSurge: 25%
|
2021-05-14 14:54:57 +02:00
|
|
|
maxUnavailable: 50%
|
2020-07-21 17:42:02 +02:00
|
|
|
type: RollingUpdate
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: agent-premerge-debian
|
2020-04-22 10:38:16 +02:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: agent-premerge-debian
|
|
|
|
spec:
|
|
|
|
containers:
|
2020-07-21 17:42:02 +02:00
|
|
|
- name: buildkite-premerge-debian
|
2021-05-14 14:54:57 +02:00
|
|
|
image: gcr.io/llvm-premerge-checks/buildkite-premerge-debian:stable
|
2020-07-21 17:42:02 +02:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 30
|
2020-07-21 18:40:36 +02:00
|
|
|
memory: 80Gi
|
2020-07-21 17:42:02 +02:00
|
|
|
requests:
|
|
|
|
cpu: 30
|
2020-07-21 18:40:36 +02:00
|
|
|
memory: 80Gi
|
2020-07-21 17:42:02 +02:00
|
|
|
volumeMounts:
|
|
|
|
- name: github-ssh
|
|
|
|
mountPath: /mnt/ssh
|
2022-01-19 13:30:40 +01:00
|
|
|
- name: workdir
|
|
|
|
mountPath: /var/lib/buildkite-agent
|
2020-07-21 17:42:02 +02:00
|
|
|
env:
|
|
|
|
- name: BUILDKITE_AGENT_TOKEN
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: buildkite-agent-token
|
|
|
|
key: token
|
2020-08-27 14:44:56 +02:00
|
|
|
- name: POD_NAME
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: metadata.name
|
2020-07-21 17:42:02 +02:00
|
|
|
- name: BUILDKITE_AGENT_TAGS
|
2020-08-27 14:44:56 +02:00
|
|
|
value: "queue=linux,name=$(POD_NAME)"
|
2020-07-21 17:42:02 +02:00
|
|
|
- name: BUILDKITE_BUILD_PATH
|
2021-05-15 10:58:23 +02:00
|
|
|
value: "/var/lib/buildkite-agent/builds"
|
2020-07-21 17:42:02 +02:00
|
|
|
- name: CONDUIT_TOKEN
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: conduit-api-token
|
|
|
|
key: token
|
2020-10-08 14:32:40 +02:00
|
|
|
- name: BUILDKITE_API_TOKEN
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: buildkite-api-token-readonly
|
|
|
|
key: token
|
2020-07-21 17:42:02 +02:00
|
|
|
volumes:
|
2020-05-13 13:13:33 +02:00
|
|
|
- name: github-ssh
|
2020-07-21 17:42:02 +02:00
|
|
|
secret:
|
|
|
|
secretName: github-ssh
|
2022-01-19 13:30:40 +01:00
|
|
|
- name: workdir
|
|
|
|
emptyDir: {}
|
2020-04-22 10:38:16 +02:00
|
|
|
nodeSelector:
|
2021-05-15 10:58:23 +02:00
|
|
|
cloud.google.com/gke-nodepool: linux-agents-2
|
2022-01-19 17:45:35 +01:00
|
|
|
terminationGracePeriodSeconds: 3600
|