1
0
Fork 0
llvm-premerge-checks/kubernetes/results-nginx/Deployment.yaml

58 lines
1.5 KiB
YAML
Raw Normal View History

2019-10-05 08:43:30 +02:00
# Copyright 2019 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: nginx-results
2019-10-09 09:29:29 +02:00
namespace: jenkins
2019-10-05 08:43:30 +02:00
spec:
selector:
matchLabels:
app: nginx-results
replicas: 1
template:
metadata:
labels:
app: nginx-results
spec:
containers:
- name: nginx-results
image: gcr.io/llvm-premerge-checks/nginx-results
2019-10-05 08:43:30 +02:00
ports:
- containerPort: 80
readinessProbe:
httpGet:
path: /
port: 80
periodSeconds: 10
timeoutSeconds: 5
successThreshold: 2
failureThreshold: 5
2019-10-05 10:35:32 +02:00
volumeMounts:
- mountPath: /mnt/nfs
name: nfs-pvc
2019-10-05 08:43:30 +02:00
resources:
limits:
cpu: 500m
memory: 1500Mi
requests:
cpu: 500m
memory: 1500Mi
2019-10-05 10:35:32 +02:00
volumes:
- name: nfs-pvc
persistentVolumeClaim:
2019-10-09 09:29:29 +02:00
claimName: nfs-jenkins
2019-10-05 11:33:29 +02:00
nodeSelector:
cloud.google.com/gke-nodepool: default-pool