perfdash/deployment.yaml (47 lines of code) (raw):

apiVersion: apps/v1 kind: Deployment metadata: name: perfdash namespace: perfdash labels: app: perfdash spec: selector: matchLabels: app: perfdash template: metadata: labels: app: perfdash spec: containers: - name: perfdash image: gcr.io/k8s-staging-perf-tests/perfdash:2.44 command: - /perfdash - --www=true - --dir=/www - --address=0.0.0.0:8080 - --builds=100 - --githubConfigDir=https://api.github.com/repos/kubernetes/test-infra/contents/config/jobs/kubernetes/sig-scalability - --githubConfigDir=https://api.github.com/repos/kubernetes/test-infra/contents/config/jobs/kubernetes/sig-release/release-branch-jobs - --githubConfigDir=https://api.github.com/repos/kubernetes/test-infra/contents/config/jobs/kubernetes-sigs/sig-windows - --allow-parsers-matching-all-tests=false imagePullPolicy: Always ports: - name: status containerPort: 8080 livenessProbe: httpGet: path: / port: 8080 initialDelaySeconds: 10 timeoutSeconds: 1 resources: requests: cpu: "3" memory: 10Gi limits: cpu: "3" memory: 10Gi restartPolicy: Always