1
0
Fork 0
llvm-premerge-checks/kubernetes/buildbot/linux.yaml
2023-11-10 15:41:46 +01:00

66 lines
1.9 KiB
YAML

# 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:
name: buildbot-linux
spec:
replicas: 1
strategy:
rollingUpdate:
maxUnavailable: 1
maxSurge: 0
type: RollingUpdate
selector:
matchLabels:
app: buildbot-linux
template:
metadata:
labels:
app: buildbot-linux
spec:
containers:
- name: runner
image: us-central1-docker.pkg.dev/llvm-premerge-checks/docker/buildbot-linux:latest
resources:
limits:
cpu: 55
memory: 200Gi
requests:
cpu: 55
memory: 200Gi
volumeMounts:
- name: workdir
mountPath: /build
env:
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- 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:9990
volumes:
- name: workdir
emptyDir: {}
nodeSelector:
cloud.google.com/gke-nodepool: linux-56
terminationGracePeriodSeconds: 30