mirror of
https://github.com/golang/go
synced 2024-11-05 11:36:10 -07:00
3c39ce7b61
Primarily for golang/go#29251 but also update the base Docker layer from Go 1.9 to Go 1.11, update other deps, and fix some Kubernetes config cleanups that happened prior without testing apparently. Fixes golang/go#29251 Change-Id: I0aafccdfedfc0d9ebb75d0c1a3b0819245ea5f19 Reviewed-on: https://go-review.googlesource.com/c/154181 Reviewed-by: Bryan C. Mills <bcmills@google.com>
39 lines
921 B
YAML
39 lines
921 B
YAML
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/symbolic-datum-552/tip:latest
|
|
imagePullPolicy: Always
|
|
command: ["/go/bin/tip", "--autocert=tip.golang.org,beta.golang.org", "--autocert-bucket=golang-tip-autocert"]
|
|
env:
|
|
- name: TMPDIR
|
|
value: /build
|
|
- name: TIP_BUILDER
|
|
value: godoc
|
|
volumeMounts:
|
|
- mountPath: /build
|
|
name: cache-volume
|
|
ports:
|
|
- containerPort: 8080
|
|
- containerPort: 443
|
|
resources:
|
|
requests:
|
|
cpu: "2"
|
|
memory: "4Gi"
|
|
limits:
|
|
cpu: "2"
|
|
memory: "8Gi"
|