1
0
Fork 0
llvm-premerge-checks/kubernetes/buildkite/linux-agents.yaml

83 lines
2.4 KiB
YAML
Raw Normal View History

2021-05-15 10:58:23 +02:00
# Copyright 2021 Google LLC
#
# 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
kind: Deployment
metadata:
name: linux-agents
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%
maxUnavailable: 50%
2020-07-21 17:42:02 +02:00
type: RollingUpdate
selector:
matchLabels:
app: agent-premerge-debian
template:
metadata:
labels:
app: agent-premerge-debian
spec:
containers:
2020-07-21 17:42:02 +02:00
- name: buildkite-premerge-debian
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
- 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
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
2020-07-21 17:42:02 +02:00
- name: BUILDKITE_AGENT_TAGS
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
- name: BUILDKITE_API_TOKEN
valueFrom:
secretKeyRef:
name: buildkite-api-token-readonly
key: token
2020-07-21 17:42:02 +02:00
volumes:
- name: github-ssh
2020-07-21 17:42:02 +02:00
secret:
secretName: github-ssh
- name: workdir
emptyDir: {}
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