Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wip cronjob definitions #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 60 additions & 9 deletions microservice-base/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ spec:
group: {{ .group }}
annotations:
rollme: {{ randAlphaNum 5 | quote }}
vault.hashicorp.com/agent-inject: 'true'
vault.hashicorp.com/role: '{{ .codebase }}-{{ .environment }}'
vault.hashicorp.com/agent-inject-secret-secrets.txt: 'services/{{ .environment }}/{{ .codebase }}'
vault.hashicorp.com/agent-inject-template-secrets.txt: |
{{ "{{" }}- with secret "services/{{ .environment }}/{{ .codebase }}" {{ "}}" }}
{{ "{{" }}- range $k, $v := .Data.data {{ "}}" }}
export {{ "{{" }} $k {{ "}}" }}="{{ "{{" }} $v {{ "}}" }}"
{{ "{{" }}- end {{ "}}" }}
{{ "{{" }}- end {{ "}}" }}
# vault.hashicorp.com/agent-inject: 'true'
# vault.hashicorp.com/role: '{{ .codebase }}-{{ .environment }}'
# vault.hashicorp.com/agent-inject-secret-secrets.txt: 'services/{{ .environment }}/{{ .codebase }}'
# vault.hashicorp.com/agent-inject-template-secrets.txt: |
# {{ "{{" }}- with secret "services/{{ .environment }}/{{ .codebase }}" {{ "}}" }}
# {{ "{{" }}- range $k, $v := .Data.data {{ "}}" }}
# export {{ "{{" }} $k {{ "}}" }}="{{ "{{" }} $v {{ "}}" }}"
# {{ "{{" }}- end {{ "}}" }}
# {{ "{{" }}- end {{ "}}" }}
spec:
serviceAccountName: {{ .codebase }}-{{ .environment }}
containers:
Expand Down Expand Up @@ -60,6 +60,7 @@ spec:
secretKeyRef:
name: pypi
key: address
# TODO: dynamically fetch environment
- name: APP_ENV
value: {{ .environment }}
{{- with .container.imagePullSecrets }}
Expand All @@ -68,3 +69,53 @@ spec:
{{- end }}
---
{{- end }}

{{- range .Values.cronjobs }}
apiVersion: batch/v1
kind: CronJob
metadata:
name: {{ .name }}-{{ .environment }}
labels:
app: {{ .name }}-{{ .environment }}
codebase: {{ .codebase }}
spec:
schedule: {{ .schedule }}
jobTemplate:
spec:
template:
spec:
containers:
- name: {{ .name }}-{{ .environment }}
image: {{ .container.image.repository }}:{{ .container.image.tag }}
command: {{ .container.command }}
resources: {{ toYaml .container.resources | nindent 12 }}
env:
{{- range .container.env }}
- name: {{ .name }}
value: {{ .value }}
{{- end }}
- name: KUBERNETES
value: 'true'
- name: PULL_SECRETS_FROM_VAULT
value: '1'
- name: VAULT_ADDR
valueFrom:
secretKeyRef:
name: vault
key: address
- name: VAULT_TOKEN
valueFrom:
secretKeyRef:
name: vault
key: token
- name: PYPI_INDEX_URL
valueFrom:
secretKeyRef:
name: pypi
key: address
{{- with .container.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
---
{{- end }}
18 changes: 18 additions & 0 deletions microservice-base/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,21 @@ apps:
service:
type: ClusterIP
port: 80

cronjobs:
- name: product-worker-cronjob
environment: production
codebase: product-service
schedule: "*/5 * * * *"
container:
image:
repository: product-worker-cronjob
tag: latest
imagePullSecrets: []
command: "python -m app.worker"
resources:
limits:
cpu: 500m
requests:
cpu: 200m
env: []