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

67 lines
1.8 KiB
YAML
Raw Normal View History

2023-09-07 16:34:40 +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.
apiVersion: apps/v1
kind: Deployment
metadata:
2023-10-04 13:35:05 +02:00
name: buildbot-linux
2023-09-07 16:34:40 +02:00
spec:
replicas: 1
strategy:
rollingUpdate:
maxUnavailable: 1
maxSurge: 0
type: RollingUpdate
selector:
matchLabels:
2023-10-04 13:35:05 +02:00
app: buildbot-linux
2023-09-07 16:34:40 +02:00
template:
metadata:
labels:
2023-10-04 13:35:05 +02:00
app: buildbot-linux
2023-09-07 16:34:40 +02:00
spec:
containers:
- name: runner
image: gcr.io/llvm-premerge-checks/buildbot-linux:latest
resources:
limits:
2023-10-04 13:35:05 +02:00
cpu: 55
memory: 200Gi
2023-09-07 16:34:40 +02:00
requests:
2023-10-04 13:35:05 +02:00
cpu: 55
memory: 200Gi
2023-09-07 16:34:40 +02:00
volumeMounts:
- name: workdir
mountPath: /build
env:
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
2023-10-04 13:35:05 +02:00
- name: BUILDBOT_PASSWORD
valueFrom:
secretKeyRef:
name: buildbot-premerge-linux-1
key: password
- name: BUILDBOT_NAME
value: premerge-linux-1
- name: BUILDBOT_ADDRESS
value: lab.llvm.org:9994
2023-09-07 16:34:40 +02:00
volumes:
- name: workdir
emptyDir: {}
nodeSelector:
2023-10-04 13:35:05 +02:00
cloud.google.com/gke-nodepool: linux-56
2023-09-07 16:34:40 +02:00
terminationGracePeriodSeconds: 30