Buildcache deployment manifests

This commit is contained in:
Mustafa Gezen 2022-10-30 04:26:24 +01:00
parent 6362ca2caf
commit 4ec7ae004a
Signed by untrusted user who does not match committer: mustafa
GPG Key ID: DCDF010D946438C1
4 changed files with 92 additions and 0 deletions

View File

@ -0,0 +1,14 @@
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: buildcache
namespace: default
labels:
app: buildcache
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Gi

View File

@ -0,0 +1,7 @@
kind: ServiceAccount
apiVersion: v1
metadata:
name: buildcache
namespace: default
annotations:
eks.amazonaws.com/role-arn: arn:aws:iam::893168113496:role/resf-buildcache-peridot

View File

@ -0,0 +1,61 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: buildcache
namespace: default
labels:
app: buildcache
spec:
replicas: 1
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
selector:
matchLabels:
app: buildcache
template:
metadata:
labels:
app: buildcache
spec:
serviceAccountName: "buildcache"
terminationGracePeriodSeconds: 180
securityContext:
fsGroup: 1000
containers:
- name: buildcache
image: quay.io/bazel-remote/bazel-remote:v2.3.9
args:
- --s3.auth_method=iam_role
- --s3.region=us-east-2
- --s3.bucket=resf-prod-buildcache
- --s3.endpoint=s3.us-east-2.amazonaws.com
- --max_size=98
- --dir=/buildcache
ports:
- name: http
containerPort: 8080
- name: grpc
containerPort: 9092
volumeMounts:
- name: buildcache
mountPath: /buildcache
livenessProbe:
httpGet:
path: /status
port: 8080
initialDelaySeconds: 3
periodSeconds: 3
readinessProbe:
httpGet:
path: /status
port: 8080
initialDelaySeconds: 10
periodSeconds: 3
timeoutSeconds: 600
volumes:
- name: buildcache
persistentVolumeClaim:
claimName: buildcache

View File

@ -0,0 +1,10 @@
apiVersion: v1
kind: Service
metadata:
name: buildcache
namespace: default
spec:
selector:
app: buildcache
ports:
- port: 9092