blob: f43dfa27ce9ba558158e4a1c40b2d43a943c515d [file] [log] [blame]
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: tipgodoc-deployment
spec:
replicas: 1
template:
metadata:
name: tipgodoc
labels:
app: tipgodoc
spec:
volumes:
- name: cache-volume
emptyDir: {}
containers:
- name: tipgodoc
image: gcr.io/go-dashboard-dev/tip:latest
imagePullPolicy: Always
command: ["/go/bin/tip", "--autocert=tip-staging.golang.org", "--autocert-bucket=golang-tip-dev-autocert"]
env:
- name: TMPDIR
value: /build
- name: TIP_BUILDER
value: golangorg
volumeMounts:
- mountPath: /build
name: cache-volume
ports:
- containerPort: 8080
- containerPort: 443
resources:
requests:
cpu: "1"
memory: "4Gi"
limits:
cpu: "2"
memory: "8Gi"