blob: 9d378d2bcd4f6966e253e8b5ae2d3ccbf011fb8f [file] [log] [blame]
apiVersion: v1
kind: Service
metadata:
labels:
app: gold-{{.INSTANCE_ID}}-periodictasks
name: gold-{{.INSTANCE_ID}}-periodictasks
spec:
ports:
- name: metrics
port: 20000
selector:
app: gold-{{.INSTANCE_ID}}-periodictasks
type: NodePort
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: gold-{{.INSTANCE_ID}}-periodictasks
spec:
replicas: 1
selector:
matchLabels:
app: gold-{{.INSTANCE_ID}}-periodictasks
strategy:
type: RollingUpdate
template:
metadata:
labels:
app: gold-{{.INSTANCE_ID}}-periodictasks
appgroup: gold-{{.INSTANCE_ID}}
date: "{{.NOW}}" # Forces a re-deploy even if just the config file changes.
annotations:
prometheus.io.scrape: "true"
prometheus.io.port: "20000"
spec:
automountServiceAccountToken: false
securityContext:
runAsUser: 2000 # aka skia
fsGroup: 2000 # aka skia
containers:
- name: gold-{{.INSTANCE_ID}}-periodictasks
image: {{.PERIODICTASKS_IMAGE}}
args:
- "--common_instance_config=/etc/gold-config/{{.INSTANCE_ID}}.json5"
- "--config=/etc/gold-config/{{.INSTANCE_ID}}-periodictasks.json5"
- "--logtostderr"
ports:
- containerPort: 20000
name: prom
volumeMounts:
- name: gold-{{.INSTANCE_ID}}-config-volume
mountPath: /etc/gold-config/
- name: gold-service-account-secrets
mountPath: /etc/gold-secrets/
{{if .INCLUDE_GITHUB_CREDS}}
- name: gold-github-token
mountPath: /var/secrets/github/
{{end}}
env:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /etc/gold-secrets/service-account.json
- name: K8S_POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
resources:
requests:
memory: "100Mi"
cpu: "10m"
readinessProbe:
httpGet:
path: /healthz
port: 8000
initialDelaySeconds: 5
periodSeconds: 3
volumes:
- name: gold-{{.INSTANCE_ID}}-config-volume
configMap:
defaultMode: 400
name: gold-{{.INSTANCE_ID}}-config
- name: gold-service-account-secrets
secret:
secretName: gold-service-account-secrets
{{if .INCLUDE_GITHUB_CREDS}}
- name: gold-github-token
secret:
secretName: gold-github-token
{{end}}