Created
November 17, 2019 14:05
-
-
Save prashanth-sams/a3186e6fa66a768932d88984c43cfa85 to your computer and use it in GitHub Desktop.
Sitespeedio Deployment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kind: Deployment | |
apiVersion: apps/v1 | |
metadata: | |
name: sitespeed-io | |
labels: | |
run: sitespeed-io | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
run: sitespeed-io | |
template: | |
metadata: | |
labels: | |
run: sitespeed-io | |
spec: | |
containers: | |
- name: sitespeed-io | |
image: sitespeedio/sitespeed.io | |
securityContext: | |
privileged: true | |
command: [ "/bin/bash", "-ce", "tail -f /dev/null" ] | |
volumeMounts: | |
- mountPath: /sitespeed.io | |
name: sitespeed-volume | |
resources: {} | |
restartPolicy: Always | |
volumes: | |
- name: sitespeed-volume | |
hostPath: | |
path: '/tmp/' | |
- name: dshm | |
emptyDir: | |
medium: 'Memory' | |
sizeLimit: '1024Mi' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment