forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deployment-staging.yaml
41 lines (41 loc) · 954 Bytes
/
deployment-staging.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
apiVersion: v1
kind: ServiceAccount
metadata:
annotations:
iam.gke.io/gcp-service-account: [email protected]
name: kettle
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: kettle-staging
spec:
replicas: 1
selector:
matchLabels:
app: kettle-staging
template:
metadata:
labels:
app: kettle-staging
spec:
serviceAccountName: kettle
containers:
- name: kettle-staging
image: gcr.io/k8s-staging-infra-tools/kettle:latest
imagePullPolicy: Always
env:
- name: BUILD_LIMIT
value: "1000"
- name: DEPLOYMENT
value: staging
- name: SUBSCRIPTION_PATH
value: kubernetes-jenkins/gcs-changes/kettle-staging
volumeMounts:
- name: data
mountPath: /data
volumes:
- name: data
persistentVolumeClaim:
claimName: kettle-data-staging